IAzureBlobDBRepository.cs 530 B

1234567891011121314
  1. using TEAMModelOS.SDK.Module.AzureBlob.Container;
  2. using Microsoft.AspNetCore.Http;
  3. using System.Collections.Generic;
  4. using System.Threading.Tasks;
  5. namespace TEAMModelOS.SDK.Module.AzureBlob.Interfaces
  6. {
  7. public interface IAzureBlobDBRepository
  8. {
  9. Task<List<AzureBlobModel>> UploadFiles(IFormFile[] file ,string fileSpace="common");
  10. Task<AzureBlobModel> UploadWord(IFormFile file, string fileSpace = "wordfiles");
  11. Task<AzureBlobModel> UploadPath(string path, string fileSpace = "common");
  12. }
  13. }