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.

15 lines
329 B

1 year ago
  1. using Common.Model;
  2. using Common.Model.KftcSendMoney;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Business.KFTCSendMoneyBussiness
  9. {
  10. public interface IKftcSendMoney
  11. {
  12. DbResult DebitAccount(KftcSendMoneyRequest request);
  13. }
  14. }