public HomeController(IAllLamps lampRep) { _lampRep = lampRep; }
public LampsController(IAllLamps iAllLamps, ILampsCategory iLampsCat) { _allLamps = iAllLamps; _allCategories = iLampsCat; }
public ShopCartController(IAllLamps lampRep, ShopCart shopCart) { _lampRep = lampRep; _shopCart = shopCart; }