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