public SushiBoxNavigationMenuViewComponent(ISushiBoxRepository repository)
 {
     this.repository = repository;
 }
Пример #2
0
 public SushiBoxController(ISushiBoxRepository repository, CartSushiBox cart)
 {
     this.repository = repository;
     this.cart       = cart;
 }