irc-netcore-api/IRaCIS.Core.Application/Service/Visit/Interface/IPatientService.cs

15 lines
385 B
C#

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