10 lines
		
	
	
		
			320 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			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);
 | 
						|
    }
 | 
						|
} |