Skip to content

Instantly share code, notes, and snippets.

@chauvincent
Created May 14, 2019 06:07
Show Gist options
  • Select an option

  • Save chauvincent/8882082ea1280c722955b4803ca6854b to your computer and use it in GitHub Desktop.

Select an option

Save chauvincent/8882082ea1280c722955b4803ca6854b to your computer and use it in GitHub Desktop.
protocol OrdersListDisplayLogic {}
protocol OrdersListBusinessLogic {}
protocol OrdersListPresentationLogic {}
class OrdersListViewController: OrdersListDisplayLogic {
var interactor: OrdersListBusinessLogic
...
}
class OrdersListInteractor: OrdersListBusinessLogic {
var presenter: OrdersListPresentationLogic
...
}
class OrdersListPresenter: OrdersListPresentationLogic {
var view: OrdersListDisplayLogic
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment