2023-09-22 10:52:17 -05:00
|
|
|
|
using DamageAssesment.Api.DocuLinks.Models;
|
|
|
|
|
|
|
|
|
|
namespace DamageAssesment.Api.DocuLinks.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IUploadService
|
|
|
|
|
{
|
|
|
|
|
Models.Doculink UploadDocument( int counter, ReqDoculink documentInfo);
|
|
|
|
|
public Models.Doculink UpdateDocuments(int counter, Models.Doculink document, ReqDoculink documentInfo);
|
|
|
|
|
void Deletefile(string path);
|
2023-12-01 17:36:15 -05:00
|
|
|
|
Task<byte[]> DownloadFile(string path);
|
2023-12-04 14:37:53 -05:00
|
|
|
|
Task<string> GetFile(string path);
|
2023-09-22 10:52:17 -05:00
|
|
|
|
void Movefile(string path);
|
|
|
|
|
}
|
|
|
|
|
}
|