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.

31 lines
728 B

5 years ago
5 years ago
5 years ago
5 years ago
  1. //
  2. // SetupRecipientWireframeInputOutput.swift
  3. // GME Remit
  4. //
  5. // Created by InKwon James Kim on 09/08/2019.
  6. //Copyright © 2019 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. import Foundation
  9. enum SetupOpenType: Int {
  10. case country = 0
  11. case paymentMode
  12. case bank
  13. case branch
  14. case idType
  15. case stateProvince
  16. case district
  17. case relation
  18. case reason
  19. case nativeCountry
  20. }
  21. protocol SetupRecipientWireframeInput: WireframeInput {
  22. func openSelectMode(with model: [TablePresenterProtocol], type: SetupOpenType)
  23. func openBranches(countryCode: String, bankID: String)
  24. }
  25. protocol SetupRecipientWireframeOutput: class {
  26. func setSelectedData(with model: TablePresenterProtocol?, type: SetupOpenType)
  27. }