IDicomImageFinderService.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. // Copyright (c) 2012-2020 fo-dicom contributors.
  2. // Licensed under the Microsoft Public License (MS-PL).
  3. using System.Collections.Generic;
  4. namespace QueryRetrieve_SCP.Model
  5. {
  6. public interface IDicomImageFinderService
  7. {
  8. /// <summary>
  9. /// Searches in a DICOM store for patient information. Returns a representative DICOM file per found patient
  10. /// </summary>
  11. List<string> FindPatientFiles(string PatientName, string PatientId);
  12. /// <summary>
  13. /// Searches in a DICOM store for study information. Returns a representative DICOM file per found study
  14. /// </summary>
  15. List<string> FindStudyFiles(string PatientName, string PatientId, string AccessionNbr, string StudyUID);
  16. /// <summary>
  17. /// Searches in a DICOM store for series information. Returns a representative DICOM file per found serie
  18. /// </summary>
  19. List<string> FindSeriesFiles(string PatientName, string PatientId, string AccessionNbr, string StudyUID, string SeriesUID, string Modality);
  20. /// <summary>
  21. /// Searches in a DICOM store for all files matching the given UIDs
  22. /// </summary>
  23. List<string> FindFilesByUID(string PatientId, string StudyUID, string SeriesUID);
  24. }
  25. }