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.

27 lines
585 B

  1. //
  2. // InternationalTopupService.swift
  3. // GME Remit
  4. //
  5. // Created by InKwon James Kim on 2019/10/30.
  6. //Copyright © 2019 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. import Foundation
  9. class InternationalTopupService: InternationalTopupServiceType {
  10. func fetchCardList(
  11. type: String,
  12. mobile: String,
  13. success: @escaping (CardList) -> Void,
  14. failure: @escaping (Error) -> Void
  15. ) {
  16. let service = PhoneCardRechargeService()
  17. service.fetchCardList(
  18. type: type,
  19. mobile: mobile,
  20. success: success,
  21. failure: failure
  22. )
  23. }
  24. }