IDicomImageFinderService.cs 631 B

123456789101112131415161718
  1. // Copyright (c) 2012-2020 fo-dicom contributors.
  2. // Licensed under the Microsoft Public License (MS-PL).
  3. namespace Wado.Models
  4. {
  5. /// <summary>
  6. /// represents a service used to retrieve images by instance UID
  7. /// </summary>
  8. public interface IDicomImageFinderService
  9. {
  10. /// <summary>
  11. /// Returns the image path of the dicom file with instance UID = instanceUid
  12. /// </summary>
  13. /// <param name="instanceUid">instance uid of the image to find</param>
  14. /// <returns>the image path if found, else null</returns>
  15. string GetImageByInstanceUid(string instanceUid);
  16. }
  17. }