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.

34 lines
730 B

6 years ago
  1. //
  2. // ExchangeRatesPresenter.swift
  3. // GMERemittance
  4. //
  5. // Created by gme_2 on 24/08/2018.
  6. //Copyright © 2018 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. import Foundation
  9. class ExchangeRatesPresenter {
  10. // MARK: Properties
  11. weak var view: ExchangeRatesViewInterface?
  12. var interactor: ExchangeRatesInteractorInput?
  13. var wireframe: ExchangeRatesWireframeInput?
  14. // MARK: Converting entities
  15. }
  16. // MARK: ExchangeRates module interface
  17. extension ExchangeRatesPresenter: ExchangeRatesModuleInterface {
  18. func viewIsReady() {
  19. interactor?.viewIsReady()
  20. }
  21. }
  22. // MARK: ExchangeRates interactor output interface
  23. extension ExchangeRatesPresenter: ExchangeRatesInteractorOutput {
  24. }