Example #1
0
 public ThreeDController(ParadigmWatchContext dB)
 {
     DB = dB;
 }
Example #2
0
 public ProductPageController(ParadigmWatchContext db)
 {
     DB            = db;
     WatchCreation = new WatchCreator(db);
 }
 public WatchCreator(ParadigmWatchContext db)
 {
     DB = db;
 }
Example #4
0
 public YouMayAlsoLikeViewComponent(ParadigmWatchContext dB)
 {
     DB = dB;
 }
Example #5
0
 public CartController(Cart cartService, ParadigmWatchContext dbContext)
 {
     cart        = cartService;
     dataContext = dbContext;
     creator     = new WatchCreator(dataContext);
 }
Example #6
0
 public HomeController(ParadigmWatchContext db)
 {
     DB            = db;
     WatchCreation = new WatchCreator(db);
     Watches       = new List <WatchViewModel>();
 }