36 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C#
		
	
	
| //--------------------------------------------------------------------
 | |
| //     此代码由T4模板自动生成  byzhouhang 20210918
 | |
| //	   生成时间 2022-10-20 11:52:48 
 | |
| //     对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
 | |
| //--------------------------------------------------------------------
 | |
| 
 | |
| using IRaCIS.Core.Application.ViewModel;
 | |
| using IRaCIS.Core.Domain.Share.Common;
 | |
| 
 | |
| namespace IRaCIS.Core.Application.Interfaces
 | |
| {
 | |
|     /// <summary>
 | |
|     /// ITrialEmailNoticeConfigService
 | |
|     /// </summary>	
 | |
|     public interface ITrialEmailNoticeConfigService
 | |
|     {
 | |
| 
 | |
| 
 | |
|         Task<IResponseOutput<List<TrialEmailNoticeConfigView>>> GetTrialEmailNoticeConfigList(TrialEmailNoticeConfigQuery inQuery);
 | |
| 
 | |
|         Task<IResponseOutput> AddOrUpdateTrialEmailNoticeConfig(TrialEmailNoticeConfigAddOrEdit addOrEditTrialEmailNoticeConfig);
 | |
| 
 | |
|         Task<IResponseOutput> DeleteTrialEmailNoticeConfig(Guid trialEmailNoticeConfigId);
 | |
| 
 | |
|         Task<string> BaseBusinessScenarioSendEmailAsync(Guid visitTaskId, bool? isMedicalReviewAndSuggestApplyReReading = null, EmailStoreSendMode emailStoreMode = EmailStoreSendMode.StoreLocalSend, string sendFileRelativePath = "");
 | |
| 
 | |
|     }
 | |
| 
 | |
|     public class EmailStoreSendDto
 | |
|     {
 | |
|         public EmailStoreSendMode EmailStoreSendMode { get; set; } = EmailStoreSendMode.StoreLocalSend;
 | |
| 
 | |
|         public string SendFileRelativePath { get; set; }
 | |
|     }
 | |
| }
 |