예제 #1
0
 public CartController(IAllMerches merchRep, Cart cart)
 {
     _merchRep = merchRep;
     _cart     = cart;
 }
예제 #2
0
 public HomeController(IAllMerches merchRep)
 {
     _merchRep = merchRep;
 }
예제 #3
0
 public MerchesController(IAllMerches iAllMerches, IMerchesCategory iMerchesCat, AppDBContent dbContext)
 {
     _allMerches    = iAllMerches;
     _allCategories = iMerchesCat;
     _dbContext     = dbContext;
 }