1234567891011121314 |
- using TEAMModelOS.SDK.Module.AzureBlob.Container;
- using Microsoft.AspNetCore.Http;
- using System.Collections.Generic;
- using System.Threading.Tasks;
- namespace TEAMModelOS.SDK.Module.AzureBlob.Interfaces
- {
- public interface IAzureBlobDBRepository
- {
- Task<List<AzureBlobModel>> UploadFiles(IFormFile[] file ,string fileSpace="common");
- Task<AzureBlobModel> UploadWord(IFormFile file, string fileSpace = "wordfiles");
- Task<AzureBlobModel> UploadPath(string path, string fileSpace = "common");
- }
- }
|