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.

14 lines
366 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Swift.API.TPAPIs.MerchatradePushAPI
  6. {
  7. public interface IMerchantradeAPIService
  8. {
  9. DbResult SendTxnMtrade(string user, MtradePushDetail _txnDetail, string provider);
  10. DbResult GetExRate(string user, string provider, string pAgentCode);
  11. }
  12. }