irc-netcore-api/IRaCIS.Core.Application/Service/ImageAndDoc/Interface/IImageShareService.cs

10 lines
320 B
C#

using IRaCIS.Core.Application.Contracts.Dicom.DTO;
namespace IRaCIS.Core.Application.Services
{
public interface IImageShareService
{
Task<IResponseOutput> CreateImageShare(ImageShareCommand imageShareCommand);
Task<IResponseOutput> VerifyShareImage(Guid resourceId, string password);
}
}