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

using CustomerOnlineV2.Common.Models.TransactionModel;
using CustomerOnlineV2.Common.Models.RegisterModel;
namespace CustomerOnlineV2.Api.API.TPApi
{
public interface ITPApiService
{
Task<ExrateResponse> GetExRate(ExrateCalculateRequestModel _request);
Task<SendMoneyResponse> SendMoney(SendMoneyRequestModel _request);
Task<AddressListResponse> GetAddressList(AddressRequest _request);
}
}