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