18 lines
519 B
C#
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);
|
|
|
|
}
|
|
}
|