You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
436 B

1 year ago
  1. using Common;
  2. using Common.Model.PowerCall;
  3. namespace Business.PowerCall
  4. {
  5. public interface IPowerCallBusiness
  6. {
  7. JsonRxResponse GetChargeHistory(PowerCallInfo.GetPowerCallChargeHistory getHistory);
  8. JsonRxResponse CallBackPowerCall(string callBack);
  9. JsonRxResponse GetCardInfo(PowerCallInfo.GetCardInfo getCardInfo);
  10. JsonRxResponse VerificationAndBuy(PowerCallInfo.BuyItem buyItem);
  11. }
  12. }