using Azure.Storage.Blobs.Models; using DamageAssesment.Api.Attachments.Models; namespace DamageAssesment.Api.Attachments.Interfaces { public interface IAzureBlobService { Task>> UploadFiles(List files); Task> UploadAttachment(int responseId, int answerId, int counter, List postedFile); Task> UploadAttachment(int responseId, int counter, List answers); Task> UpdateAttachments(int responseId, List answers, IEnumerable attachments); void Deletefile(string path); void Movefile(string path); } }