コード例 #1
0
 public int MatchFollowupMailSend([FromBody] MatchFollowupMailSend SendMail)
 {
     SendMail.AcceptLink = Commonclass.ReturnEncryptLink("Accept", (!string.IsNullOrEmpty(SendMail.FromProfileID) ? SendMail.FromProfileID : null), (!string.IsNullOrEmpty(SendMail.ToProfileID) ? SendMail.ToProfileID : null));
     SendMail.RejectLink = Commonclass.ReturnEncryptLink("Reject", !string.IsNullOrEmpty(SendMail.FromProfileID) ? SendMail.FromProfileID : null, !string.IsNullOrEmpty(SendMail.ToProfileID) ? SendMail.ToProfileID : null);
     return(this.IEmployeeReport.MatchFollowupMailSend(SendMail));
 }
コード例 #2
0
 public int MatchFollowupMailSend(MatchFollowupMailSend Mobj)
 {
     return(new EmployeeReportPageDAL().MatchFollowupMailSend(Mobj, "[dbo].[sp_Email_TicketHistoryInfo_slide_New]"));
 }