Slide 29
Slide 29 text
RENDERER
PRESENTER
VIEW CONTROLLER
VIEW
SERVICE
REPOSITORY
VIEW MODEL
CONTEXT
RENDERER
class Renderer {
func render() {
let cartViewModel = CartPresenter.present(
accountService: context.accountService,
cartService: context.cartService,
errorService: context.errorService,
itemService: context.itemService
)
cartViewController.update(cartViewModel)
}
} #hearandnow | @khhawthorne