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.

13 lines
433 B

  1. using CustomerOnlineV2.Common.Models.TransactionModel;
  2. using CustomerOnlineV2.Common.Models.RegisterModel;
  3. namespace CustomerOnlineV2.Api.API.TPApi
  4. {
  5. public interface ITPApiService
  6. {
  7. Task<ExrateResponse> GetExRate(ExrateCalculateRequestModel _request);
  8. Task<SendMoneyResponse> SendMoney(SendMoneyRequestModel _request);
  9. Task<AddressListResponse> GetAddressList(AddressRequest _request);
  10. }
  11. }