Exemple #1
0
 public HomeController(IAllLights lightRep)
 {
     _lightRep = lightRep;
 }
Exemple #2
0
 public ShopCartController(IAllLights lightRep, ShopCart shopCart)
 {
     _lightRep = lightRep;
     _shopCart = shopCart;
 }
Exemple #3
0
 public LightsController(IAllLights iAllLights, ILightCategory iLightsCat)
 {
     _allLights      = iAllLights;
     _allCategoriers = iLightsCat;
 }