//--------------------------------------------------------------------
//     此代码由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
{
    /// 
    /// ITrialEmailNoticeConfigService
    /// 	
    public interface ITrialEmailNoticeConfigService
    {
        Task>> GetTrialEmailNoticeConfigList(TrialEmailNoticeConfigQuery inQuery);
        Task AddOrUpdateTrialEmailNoticeConfig(TrialEmailNoticeConfigAddOrEdit addOrEditTrialEmailNoticeConfig);
        Task DeleteTrialEmailNoticeConfig(Guid trialEmailNoticeConfigId);
        Task 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; }
    }
}