public DataAccessLayer()
 {
     _workerLogic       = new WorkerBL();
     _truckLogic        = new TruckBL();
     _driveLogic        = new DriveBL();
     _userLogic         = new UserBL();
     _notificationLogic = new NotificationBL();
     _fuelLogic         = new FuelBL();
     _brandLogic        = new BrandsBL();
 }
Ejemplo n.º 2
0
 public ProductsController(ProductCategoriesBL productCategoriesBL,
                           ProductsBL productsBL, BrandsBL brandsBL, CountriesBL countriesBL,
                           ContentContentTypesBL contentContentTypesBL, ProductPhotosBL productPhotosBL,
                           CurrenciesBL currenciesBL)
 {
     _productCategoriesBL   = productCategoriesBL;
     _productsBL            = productsBL;
     _brandsBL              = brandsBL;
     _countriesBL           = countriesBL;
     _contentContentTypesBL = contentContentTypesBL;
     _productPhotosBL       = productPhotosBL;
     _currenciesBL          = currenciesBL;
 }
Ejemplo n.º 3
0
 public BrandsController(BrandsBL brandsBL)
 {
     _brandsBL = brandsBL;
 }