1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- using FISLib.Remedical;
- using System.Collections.Generic;
- using Vinno.FIS.Sonopost.Features.Dicom;
- namespace Vinno.FIS.Sonopost.Managers.Interfaces
- {
- internal interface IRemedicalManager : ISonopostManager
- {
-
-
-
-
-
- void UploadWorkFlow(string uploadVidPath, string patientId);
-
-
-
-
- void Retry(string scanDataId);
-
-
-
-
- void Delete(string scanDataId);
-
-
-
-
-
- string GetDicomFilePath(string id);
-
-
-
-
- IList<DicomUploadContext> GetConvertFailContexts();
-
-
-
-
- void DeleteOverDueRecords(int tempFileDays);
-
-
-
-
- string GetCollcetingRecordCode();
-
-
-
- void ClearRemedicalCache();
-
-
-
-
-
- FISvCloudExamInfo GetCloudExamInfo(string examRecordId);
- }
- }
|