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.

11 lines
257 B

1 year ago
  1. using Common;
  2. using Common.Model;
  3. namespace Business.Resend
  4. {
  5. public interface IResendBusiness
  6. {
  7. JsonRxResponse GetResendLists(DateFilterParams search, string customerId);
  8. JsonRxResponse GetTransactionSummary(string id);
  9. }
  10. }