Exemple #1
0
 public SendGeneralEmailRequest(JCR.Reports.CCMService.MailDetails mailDetails, string fnReturnValue, string applicationCode, int actionTypeID, int createdByUserId)
 {
     this.mailDetails     = mailDetails;
     this.fnReturnValue   = fnReturnValue;
     this.applicationCode = applicationCode;
     this.actionTypeID    = actionTypeID;
     this.createdByUserId = createdByUserId;
 }
Exemple #2
0
 public int SendGeneralEmail(JCR.Reports.CCMService.MailDetails mailDetails, ref string fnReturnValue, string applicationCode, int actionTypeID, int createdByUserId)
 {
     JCR.Reports.CCMService.SendGeneralEmailRequest inValue = new JCR.Reports.CCMService.SendGeneralEmailRequest();
     inValue.mailDetails     = mailDetails;
     inValue.fnReturnValue   = fnReturnValue;
     inValue.applicationCode = applicationCode;
     inValue.actionTypeID    = actionTypeID;
     inValue.createdByUserId = createdByUserId;
     JCR.Reports.CCMService.SendGeneralEmailResponse retVal = ((JCR.Reports.CCMService.IProcessEmail)(this)).SendGeneralEmail(inValue);
     fnReturnValue = retVal.fnReturnValue;
     return(retVal.SendGeneralEmailResult);
 }