Created
January 21, 2019 09:53
-
-
Save meyusufdemirci/f43628fcb5757a8075021aeb7eb1afb3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class HomePresenter { | |
var view: HomeViewProtocol! | |
var interactor: HomeInteractorInputProtocol! | |
var router: HomeWireframeProtocol! | |
} | |
extension HomePresenter: HomePresenterProtocol { | |
func getContact() { | |
interactor.getContactFromService() | |
} | |
} | |
extension HomePresenter: HomeInteractorOutputProtocol {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment