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