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

1 year ago
  1. using Common;
  2. using Common.Model;
  3. using Common.Model.Resend;
  4. using System.Collections.Generic;
  5. namespace Repository.Resend
  6. {
  7. public interface IResendRepository
  8. {
  9. List<TranList> GetTransactionLists(DateFilterParams search, string customerId);
  10. JsonRxResponse GetRemitDetail(string id, out ExRateCalculateRequest exRateDetail, out MobileRemitRequest remitRequest, out ResendReceiverDetail receiverDetail);
  11. }
  12. }