Ultima version estable 3 Abr 2023

main
unknown 2 years ago
parent a8cc394d17
commit 5a5cfd11d3
  1. 2
      .vscode/launch.json
  2. 2
      Contracts/Utils/IFileManagerRepository.cs
  3. 2
      Properties/launchSettings.json
  4. 3
      Repository/Utils/FileManagerRepository.cs
  5. 2
      appsettings.Development.json
  6. 2
      appsettings.json
  7. BIN
      bin/Debug/net6.0/AOLBackend.dll
  8. BIN
      bin/Debug/net6.0/AOLBackend.pdb
  9. 2
      bin/Debug/net6.0/appsettings.Development.json
  10. 2
      bin/Debug/net6.0/appsettings.json
  11. BIN
      obj/Debug/net6.0/AOLBackend.dll
  12. BIN
      obj/Debug/net6.0/AOLBackend.pdb
  13. BIN
      obj/Debug/net6.0/ref/AOLBackend.dll
  14. BIN
      obj/Debug/net6.0/refint/AOLBackend.dll

@ -18,7 +18,7 @@
"serverReadyAction": { "serverReadyAction": {
"action": "openExternally", "action": "openExternally",
"pattern": "\\bNow listening on:\\s+https?://\\S+", "pattern": "\\bNow listening on:\\s+https?://\\S+",
"uriFormat": "https://localhost:7000/swagger/index.html" "uriFormat": "https://localhost:5050/swagger/index.html"
}, },
"env": { "env": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"

@ -7,6 +7,6 @@ namespace AOLBackend.Contracts.Utils
public Task<FileManager> getFileByProcess(long id, int Proceso); public Task<FileManager> getFileByProcess(long id, int Proceso);
public Task<List<FileManager>> getAllFilesByProcess(long Tags, int Proceso); public Task<List<FileManager>> getAllFilesByProcess(long Tags, int Proceso);
public Task<FileManager> getFileById(long id); public Task<FileManager> getFileById(long id);
public Task deleteFileByProcess(long id, int Proceso); public Task<Boolean> deleteFileByProcess(long id, int Proceso);
} }
} }

@ -14,7 +14,7 @@
"dotnetRunMessages": true, "dotnetRunMessages": true,
"launchBrowser": true, "launchBrowser": true,
"launchUrl": "swagger", "launchUrl": "swagger",
"applicationUrl": "https://localhost:7000;http://localhost:5000", "applicationUrl": "https://localhost:5050;http://localhost:5001",
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
} }

@ -73,7 +73,7 @@ namespace AOLBackend.Repository.Utils
return entrada.ToList(); return entrada.ToList();
} }
public async Task deleteFileByProcess(long id, int Proceso) public async Task<Boolean> deleteFileByProcess(long id, int Proceso)
{ {
var query = "Utils_FileManager_Delete"; var query = "Utils_FileManager_Delete";
using var connection = _context.CreateConnection(); using var connection = _context.CreateConnection();
@ -83,6 +83,7 @@ namespace AOLBackend.Repository.Utils
mProceso = Proceso, mProceso = Proceso,
}, },
commandType: CommandType.StoredProcedure); commandType: CommandType.StoredProcedure);
return true;
} }
} }
} }

@ -14,5 +14,5 @@
"pathFotosBodega": "c:\\data\\Bodega\\Fotos\\", "pathFotosBodega": "c:\\data\\Bodega\\Fotos\\",
"pathZipCorresponsales": "C:\\data\\", "pathZipCorresponsales": "C:\\data\\",
"CorresponsalesFilePath": "C:\\data\\", "CorresponsalesFilePath": "C:\\data\\",
"Allfiles": "C:\\data\\" "Allfiles": "C:\\data\\AOL\\"
} }

@ -32,5 +32,5 @@
"pathFotosBodega": "D:\\data\\Bodega\\Fotos\\", "pathFotosBodega": "D:\\data\\Bodega\\Fotos\\",
"pathZipCorresponsales": "D:\\data\\Corresponsales\\Zips\\", "pathZipCorresponsales": "D:\\data\\Corresponsales\\Zips\\",
"CorresponsalesFilePath": "D:\\data\\Corresponsales\\", "CorresponsalesFilePath": "D:\\data\\Corresponsales\\",
"AllFiles": "D:\\data\\" "AllFiles": "D:\\data\\AOL\\"
} }

Binary file not shown.

Binary file not shown.

@ -14,5 +14,5 @@
"pathFotosBodega": "c:\\data\\Bodega\\Fotos\\", "pathFotosBodega": "c:\\data\\Bodega\\Fotos\\",
"pathZipCorresponsales": "C:\\data\\", "pathZipCorresponsales": "C:\\data\\",
"CorresponsalesFilePath": "C:\\data\\", "CorresponsalesFilePath": "C:\\data\\",
"Allfiles": "C:\\data\\" "Allfiles": "C:\\data\\AOL\\"
} }

@ -32,5 +32,5 @@
"pathFotosBodega": "D:\\data\\Bodega\\Fotos\\", "pathFotosBodega": "D:\\data\\Bodega\\Fotos\\",
"pathZipCorresponsales": "D:\\data\\Corresponsales\\Zips\\", "pathZipCorresponsales": "D:\\data\\Corresponsales\\Zips\\",
"CorresponsalesFilePath": "D:\\data\\Corresponsales\\", "CorresponsalesFilePath": "D:\\data\\Corresponsales\\",
"AllFiles": "D:\\data\\" "AllFiles": "D:\\data\\AOL\\"
} }

Binary file not shown.

Binary file not shown.
Loading…
Cancel
Save