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.

24 lines
678 B

4 years ago
  1. using Repository.DAO.SendTransactionDao;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Data;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Business.SendTransaction
  9. {
  10. public class SendTransactionServices : ISendTransactionServices
  11. {
  12. ISendTransactionRepo _sendTxnRepo;
  13. public SendTransactionServices(ISendTransactionRepo sendTxnRepo)
  14. {
  15. _sendTxnRepo = sendTxnRepo;
  16. }
  17. public DataTable GetPayoutPartner(string user, string pCountry, string pMode)
  18. {
  19. return _sendTxnRepo.GetPayoutPartner(user, pCountry, pMode);
  20. }
  21. }
  22. }