using IRaCIS.Application.Contracts; using Microsoft.AspNetCore.Mvc; namespace IRaCIS.Application.Interfaces { public interface IPatientService { public Task>> GetDownloadPatientStudyInfo(PatientImageDownloadCommand inCommand); public Task DownloadImageSuccess(Guid trialImageDownloadId); } }