// // DomesticRemitWireframeInputOutput.swift // GME Remit // // Created by InKwon James Kim on 17/09/2019. //Copyright © 2019 Gobal Money Express Co. Ltd. All rights reserved. // import Foundation protocol DomesticRemitWireframeInput: WireframeInput { func showTablePresenter(with model: [TablePresenterProtocol]?, type: DomesticRemitPresenter.ShowType) func showPaymentMode(with model: [Account]?) func showRecentHistories() func showBiometricAuth(with model: DomesticRemitRequestModel?) func showOTP(with model: DomesticRemitRequestModel?) func showSecureKeypad(with model: DomesticRemitRequestModel?) func goReceipt(with model: DomesticRemitResponseModel) } protocol DomesticRemitWireframeOutput: class { func selectedData(with model: TablePresenterProtocol?, type: DomesticRemitPresenter.ShowType) func setPassword(_ encryptedPW: String) }