forked from MDCPS/DamageAssessment_Backend
		
	add azure sql data integration
This commit is contained in:
		| @ -1,10 +1,15 @@ | ||||
| using Azure.Storage.Blobs.Models; | ||||
| using DamageAssesment.Api.Attachments.Models; | ||||
|  | ||||
| namespace DamageAssesment.Api.Attachments.Interfaces | ||||
| { | ||||
|     public interface IAzureBlobService | ||||
|     { | ||||
|         Task<List<Azure.Response<BlobContentInfo>>> UploadFiles(List<IFormFile> files); | ||||
|         void DeleteFile(string path); | ||||
|         Task<List<Attachment>> UploadAttachment(int responseId, int answerId, int counter, List<IFormFile> postedFile); | ||||
|         Task<List<Attachment>> UploadAttachment(int responseId, int counter, List<AnswerInfo> answers); | ||||
|         Task<List<Attachment>> UpdateAttachments(int responseId, List<AnswerInfo> answers, IEnumerable<Models.Attachment> attachments); | ||||
|         void Deletefile(string path); | ||||
|         void Movefile(string path); | ||||
|     } | ||||
| } | ||||
|  | ||||
		Reference in New Issue
	
	Block a user