Exemplo n.º 1
0
 public LoginController(SneakerStoreContext context)
 {
     this.context = context;
     accountDao   = new AccountDAO(context);
     customerDao  = new CustomerDAO(context);
     shoesDao     = new ShoesDAO(context);
 }
 public BillController(SneakerStoreContext context)
 {
     this.context  = context;
     importBillDao = new ImportBillDAO(context);
     exportBillDao = new ExportBillDAO(context);
     supplierDao   = new SupplierDAO(context);
     shoesDao      = new ShoesDAO(context);
 }
Exemplo n.º 3
0
 public ShoesManageController(SneakerStoreContext context, IHostingEnvironment env)
 {
     this.context  = context;
     this._env     = env;
     shoesDao      = new ShoesDAO(context);
     shoesColorDao = new ShoesColorDAO(context);
     shoesSizeDao  = new ShoesSizeDAO(context);
     priceDao      = new PriceDAO(context);
     imageDao      = new ImageDAO(context);
 }
 public ShoesDAO(SneakerStoreContext context)
 {
     this.context = context;
 }
 public DashboardController(SneakerStoreContext context)
 {
     this.context = context;
     shoesDao     = new ShoesDAO(context);
 }
Exemplo n.º 6
0
 public PriceDAO(SneakerStoreContext context)
 {
     this.context = context;
 }
 public ColorDAO(SneakerStoreContext context)
 {
     this.context = context;
 }
 public ExportBillDAO(SneakerStoreContext context)
 {
     this.context = context;
 }
 public AccountDAO(SneakerStoreContext context)
 {
     this.context = context;
 }
 public CartController(SneakerStoreContext context)
 {
     this.context  = context;
     shoesDao      = new ShoesDAO(context);
     exportBillDao = new ExportBillDAO(context);
 }
 public CustomerDAO(SneakerStoreContext context)
 {
     this.context = context;
 }
Exemplo n.º 12
0
 public SupplierDAO(SneakerStoreContext context)
 {
     this.context = context;
 }
 public ImageDAO(SneakerStoreContext context)
 {
     this.context = context;
 }
Exemplo n.º 14
0
 public AccountController(SneakerStoreContext context)
 {
     this.context = context;
     accountDao   = new AccountDAO(context);
     customerDao  = new CustomerDAO(context);
 }