// Copyright (c) 2012-2020 fo-dicom contributors.
// Licensed under the Microsoft Public License (MS-PL).
namespace Wado.Models
{
///
/// represents a service used to retrieve images by instance UID
///
public interface IDicomImageFinderService
{
///
/// Returns the image path of the dicom file with instance UID = instanceUid
///
/// instance uid of the image to find
/// the image path if found, else null
string GetImageByInstanceUid(string instanceUid);
}
}