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
870 B

//
// 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)
}