public SmsApi(string ApiKey, string SecretKey, string ApiUrl, string ProxyAddress, string UserName, string Password)
 {
     this.Account = new Accounts(ApiKey, SecretKey, ApiUrl, ProxyAddress, UserName, Password);
     this.Contacts = new Contacts(ApiKey, SecretKey, ApiUrl, ProxyAddress, UserName, Password);
     this.Groups = new Groups(ApiKey, SecretKey, ApiUrl, ProxyAddress, UserName, Password);
     this.Messages = new Messages(ApiKey, SecretKey, ApiUrl, ProxyAddress, UserName, Password);
 }
Esempio n. 2
0
 public SmsApi(string ApiKey, string SecretKey, string ApiUrl, string ProxyAddress, string UserName, string Password)
 {
     this.Account  = new Accounts(ApiKey, SecretKey, ApiUrl, ProxyAddress, UserName, Password);
     this.Contacts = new Contacts(ApiKey, SecretKey, ApiUrl, ProxyAddress, UserName, Password);
     this.Groups   = new Groups(ApiKey, SecretKey, ApiUrl, ProxyAddress, UserName, Password);
     this.Messages = new Messages(ApiKey, SecretKey, ApiUrl, ProxyAddress, UserName, Password);
 }
 public SmsApi(string ApiKey, string SecretKey, string ApiUrl)
 {
     this.Account = new Accounts(ApiKey, SecretKey, ApiUrl);
     this.Contacts = new Contacts(ApiKey, SecretKey, ApiUrl);
     this.Groups = new Groups(ApiKey, SecretKey, ApiUrl);
     this.Messages = new Messages(ApiKey, SecretKey, ApiUrl);
 }
Esempio n. 4
0
 public SmsApi(string ApiKey, string SecretKey, string ApiUrl)
 {
     this.Account  = new Accounts(ApiKey, SecretKey, ApiUrl);
     this.Contacts = new Contacts(ApiKey, SecretKey, ApiUrl);
     this.Groups   = new Groups(ApiKey, SecretKey, ApiUrl);
     this.Messages = new Messages(ApiKey, SecretKey, ApiUrl);
 }