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

  1. //
  2. // PennyTestPresenter.swift
  3. // GME Remit
  4. //
  5. // Created by Mac on 11/27/18.
  6. //Copyright © 2018 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. import Foundation
  9. class PennyTestPresenter {
  10. // MARK: Properties
  11. weak var view: PennyTestViewInterface?
  12. var interactor: PennyTestInteractorInput?
  13. var wireframe: PennyTestWireframeInput?
  14. // MARK: Converting entities
  15. }
  16. // MARK: PennyTest module interface
  17. extension PennyTestPresenter: PennyTestModuleInterface {
  18. func initiatePennyTest() {
  19. self.interactor?.initiatePennyTest()
  20. }
  21. }
  22. // MARK: PennyTest interactor output interface
  23. extension PennyTestPresenter: PennyTestInteractorOutput {
  24. }