IAzureBlobDBRepository.cs 331 B

123456789101112
  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);
  10. }
  11. }