public bool SendSMS(FlightWeatherMailManager.MMT_Webs_MailManager.SMSRequestObj SMSMessage, ref string strSMSErrorMessage)
 {
     FlightWeatherMailManager.MMT_Webs_MailManager.SendSMSRequest inValue = new FlightWeatherMailManager.MMT_Webs_MailManager.SendSMSRequest();
     inValue.SMSMessage         = SMSMessage;
     inValue.strSMSErrorMessage = strSMSErrorMessage;
     FlightWeatherMailManager.MMT_Webs_MailManager.SendSMSResponse retVal = ((FlightWeatherMailManager.MMT_Webs_MailManager.MMT_WEBS_MailManagerSoap)(this)).SendSMS(inValue);
     strSMSErrorMessage = retVal.strSMSErrorMessage;
     return(retVal.SendSMSResult);
 }
 public SendSMSRequest(FlightWeatherMailManager.MMT_Webs_MailManager.SMSRequestObj SMSMessage, string strSMSErrorMessage)
 {
     this.SMSMessage         = SMSMessage;
     this.strSMSErrorMessage = strSMSErrorMessage;
 }