16 lines
		
	
	
		
			418 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			418 B
		
	
	
	
		
			C#
		
	
	
| 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);
 | |
|     }
 | |
| }
 |