14 lines
586 B
C#
14 lines
586 B
C#
|
using DamageAssesment.Api.Attachments.Models;
|
|||
|
|
|||
|
namespace DamageAssesment.Api.Attachments.Interfaces
|
|||
|
{
|
|||
|
public interface IUploadService
|
|||
|
{
|
|||
|
List<Db.Attachment> UploadAttachment(int responseId,int answerId, int counter, List<IFormFile> postedFile);
|
|||
|
List<Db.Attachment> UploadAttachment(int responseId, int counter, List<AnswerInfo> answers);
|
|||
|
public List<Db.Attachment> UpdateAttachments(int responseId, List<AnswerInfo> answers, IEnumerable<Models.Attachment> attachments);
|
|||
|
void Deletefile(string path);
|
|||
|
void Movefile(string path);
|
|||
|
}
|
|||
|
}
|