18 lines
433 B
C#
18 lines
433 B
C#
using System;
|
|
|
|
namespace IRaCIS.Application.Interfaces
|
|
{
|
|
public interface IFileService
|
|
{
|
|
|
|
//IResponseOutput<UploadFileInfo> DownloadOfficialResume(Guid[] doctorIds);
|
|
|
|
|
|
Task<string> CreateOfficialResumeZip(int language, Guid[] doctorIds);
|
|
|
|
Task<string> CreateDoctorsAllAttachmentZip(Guid[] doctorIds);
|
|
|
|
Task<string> CreateZipPackageByAttachment(Guid doctorId, Guid[] attachmentIds);
|
|
}
|
|
}
|