Skip to content

Instantly share code, notes, and snippets.

@meyusufdemirci
Created January 21, 2019 09:53
Show Gist options
  • Save meyusufdemirci/f43628fcb5757a8075021aeb7eb1afb3 to your computer and use it in GitHub Desktop.
Save meyusufdemirci/f43628fcb5757a8075021aeb7eb1afb3 to your computer and use it in GitHub Desktop.
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