示例#1
0
 public int Charge(string account, int sourceType, int cash, int point, int bonus, string orderId)
 {
     try
     {
         return((int)adminClient.Charge(account, sourceType, cash, point, bonus, orderId));
     }
     catch (Exception)
     {
         return(-1);
     }
 }