IAzureBlobDBRepository.cs 447 B

12345678910111213
  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. }
  12. }