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
369 B

1 year ago
  1. using Common;
  2. using Common.Model.Reward;
  3. namespace Business.Reward
  4. {
  5. public interface IRewardServices
  6. {
  7. JsonRxResponse GetProductLists(string rooturl);
  8. JsonRxResponse BuyProduct(RequestedOrderDetail orderRequest);
  9. JsonRxResponse OrderedProductList(RequestedOrderDetail orderRequest);
  10. JsonRxResponse GetAgentInfo();
  11. }
  12. }