Guest User

Untitled

a guest
Feb 25th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. protocol DynamicContentInteractorInput: class {
  2. init(for pointOfSale: PointOfSale?, api: DynamicContentFindingApi)
  3. func fetch() -> [DynamicContent]
  4. }
  5.  
  6. protocol DynamicContentPresenterInput: class {
  7. func loadContent()
  8. }
  9.  
  10. protocol DynamicContentView: BaseView {
  11. func show(dynamicContent: [DynamicContent])
  12. }
  13.  
  14. protocol DynamicContentRouter: class {
  15. func navigate(content: DynamicContent)
  16. }
Add Comment
Please, Sign In to add comment