Exemple #1
0
 public SendSmsRequest(QSDMS.API.AppSmsClient.SmsPropertyEnum sendType, string serialNumber, string serialPwd, System.Collections.Generic.Dictionary <string, string> mc, long time, int compID, int shopID)
 {
     this.sendType     = sendType;
     this.serialNumber = serialNumber;
     this.serialPwd    = serialPwd;
     this.mc           = mc;
     this.time         = time;
     this.compID       = compID;
     this.shopID       = shopID;
 }
Exemple #2
0
 public SendSmsSameRequest(QSDMS.API.AppSmsClient.SmsPropertyEnum sendType, string serialNumber, string serialPwd, string[] mobile, string content, long time, int compID, int shopID)
 {
     this.sendType     = sendType;
     this.serialNumber = serialNumber;
     this.serialPwd    = serialPwd;
     this.mobile       = mobile;
     this.content      = content;
     this.time         = time;
     this.compID       = compID;
     this.shopID       = shopID;
 }
Exemple #3
0
 public string SendSms(QSDMS.API.AppSmsClient.SmsPropertyEnum sendType, string serialNumber, string serialPwd, System.Collections.Generic.Dictionary <string, string> mc, long time, int compID, int shopID, out string error)
 {
     QSDMS.API.AppSmsClient.SendSmsRequest inValue = new QSDMS.API.AppSmsClient.SendSmsRequest();
     inValue.sendType     = sendType;
     inValue.serialNumber = serialNumber;
     inValue.serialPwd    = serialPwd;
     inValue.mc           = mc;
     inValue.time         = time;
     inValue.compID       = compID;
     inValue.shopID       = shopID;
     QSDMS.API.AppSmsClient.SendSmsResponse retVal = ((QSDMS.API.AppSmsClient.IAppSms)(this)).SendSms(inValue);
     error = retVal.error;
     return(retVal.SendSmsResult);
 }
Exemple #4
0
 public string SendSmsSame(QSDMS.API.AppSmsClient.SmsPropertyEnum sendType, string serialNumber, string serialPwd, string[] mobile, string content, long time, int compID, int shopID, out string error)
 {
     QSDMS.API.AppSmsClient.SendSmsSameRequest inValue = new QSDMS.API.AppSmsClient.SendSmsSameRequest();
     inValue.sendType     = sendType;
     inValue.serialNumber = serialNumber;
     inValue.serialPwd    = serialPwd;
     inValue.mobile       = mobile;
     inValue.content      = content;
     inValue.time         = time;
     inValue.compID       = compID;
     inValue.shopID       = shopID;
     QSDMS.API.AppSmsClient.SendSmsSameResponse retVal = ((QSDMS.API.AppSmsClient.IAppSms)(this)).SendSmsSame(inValue);
     error = retVal.error;
     return(retVal.SendSmsSameResult);
 }