示例#1
0
 public HomeController(IAllLamps lampRep)
 {
     _lampRep = lampRep;
 }
示例#2
0
 public LampsController(IAllLamps iAllLamps, ILampsCategory iLampsCat)
 {
     _allLamps      = iAllLamps;
     _allCategories = iLampsCat;
 }
示例#3
0
 public ShopCartController(IAllLamps lampRep, ShopCart shopCart)
 {
     _lampRep  = lampRep;
     _shopCart = shopCart;
 }