public int SmsBalance()
 {
     try
     {
         this.IsSuccess = true;
         return(_provider.GetSmsBalance());
     }
     catch (Exception e)
     {
         this.IsSuccess = false;
         this.Error     = e.Message;
     }
     return(0);
 }