// Copyright (c) 2012-2021 fo-dicom contributors. // Licensed under the Microsoft Public License (MS-PL). namespace Wado.Models { /// /// IDicomImageFinderService implementation for demo purposes /// public class TestDicomImageFinderService : IDicomImageFinderService { public string GetImageByInstanceUid(string instanceUid) => //always returns the same image ;) System.Web.Hosting.HostingEnvironment.MapPath(@"~/TestFiles/1.2.840.113564.192168156.2012101911104793780.1003000225002.dcm"); } }