added IsActive flag in doculinks request

This commit is contained in:
Vijay Uppu
2023-12-04 15:01:51 -05:00
parent b355109391
commit cf68398a56
9 changed files with 227 additions and 21 deletions

View File

@ -8,6 +8,7 @@ namespace DamageAssesment.Api.Attachments.Interfaces
List<Models.Attachment> UploadAttachment(int responseId, int counter, List<AnswerInfo> answers);
public List<Models.Attachment> UpdateAttachments(int responseId, List<AnswerInfo> answers, IEnumerable<Models.Attachment> attachments);
Task<byte[]> DownloadFile(string path);
Task<string> GetFile(string path);
void Deletefile(string path);
void Movefile(string path);
}