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

18 lines
519 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);
public Task<IResponseOutput<List<DownloadVisitDto>>> GetDownloadSubjectVisitStudyInfo(VisitImageDownloadCommand inCommand);
}
}