GPIC - Backend
1.0
Aplicações .NET para o backend do GPIC
|
Membros públicos | |
Task< string > | UploadFileAsync (IFormFile file, string? filePath=null) |
Realiza o upload de um arquivo de edital Mais... | |
Task< string > | UploadFileAsync (byte[] file, string? filePath) |
Realiza o upload de um arquivo de edital Mais... | |
Task | DeleteFileAsync (string filePath) |
Deleta um arquivo Mais... | |
Task Domain.Interfaces.Services.IStorageFileService.DeleteFileAsync | ( | string | filePath | ) |
Deleta um arquivo
filePath | Caminho completo até o arquivo |
Implementado em Services.StorageFileService e Services.AzureStorageService.
Task<string> Domain.Interfaces.Services.IStorageFileService.UploadFileAsync | ( | byte[] | file, |
string? | filePath | ||
) |
Realiza o upload de um arquivo de edital
file | Edital em pdf |
filePath | Caminho completo até o arquivo |
Implementado em Services.StorageFileService e Services.AzureStorageService.
Task<string> Domain.Interfaces.Services.IStorageFileService.UploadFileAsync | ( | IFormFile | file, |
string? | filePath = null |
||
) |
Realiza o upload de um arquivo de edital
file | Edital em pdf |
filePath | Caminho completo até o arquivo |
Implementado em Services.StorageFileService e Services.AzureStorageService.