using System; namespace IRaCIS.Application.Interfaces { public interface IFileService { //IResponseOutput DownloadOfficialResume(Guid[] doctorIds); string CreateOfficialResumeZip(Guid[] doctorIds); string CreateDoctorsAllAttachmentZip(Guid[] doctorIds); string CreateZipPackageByAttachment(Guid doctorId, Guid[] attachmentIds); } }