Exemple #1
0
 public int MatchFollowupResendMail([FromBody] MatchFollowupResendMail ResendMail)
 {
     ResendMail.AcceptLink = Commonclass.ReturnEncryptLink("Accept", (!string.IsNullOrEmpty(ResendMail.FromProfileID) ? ResendMail.FromProfileID : null), (!string.IsNullOrEmpty(ResendMail.ToProfileID) ? ResendMail.ToProfileID : null));
     ResendMail.RejectLink = Commonclass.ReturnEncryptLink("Reject", !string.IsNullOrEmpty(ResendMail.FromProfileID) ? ResendMail.FromProfileID : null, !string.IsNullOrEmpty(ResendMail.ToProfileID) ? ResendMail.ToProfileID : null);
     return(this.IEmployeeReport.MatchFollowupResendMail(ResendMail));
 }
Exemple #2
0
 public int MatchFollowupResendMail(MatchFollowupResendMail Mobj)
 {
     return(new EmployeeReportPageDAL().MatchFollowupResendMail(Mobj, "[dbo].[sp_Email_singleBothsideinterest]"));
 }