Exemple #1
0
 private void InitWatch()
 {
     creator = new WatchCreator(DB);
     creator.InitWatch(WatchVM.Watch);
     //AddParts();
     //FillUpShaders();
     //FillUpTextures();
     //FillUpTextMap();
 }
Exemple #2
0
 public CartController(Cart cartService, ParadigmWatchContext dbContext)
 {
     cart        = cartService;
     dataContext = dbContext;
     creator     = new WatchCreator(dataContext);
 }
Exemple #3
0
 public ProductPageController(ParadigmWatchContext db)
 {
     DB            = db;
     WatchCreation = new WatchCreator(db);
 }
Exemple #4
0
 public HomeController(ParadigmWatchContext db)
 {
     DB            = db;
     WatchCreation = new WatchCreator(db);
     Watches       = new List <WatchViewModel>();
 }