15 lines
385 B
C#
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);
|
|
|
|
}
|
|
}
|