Example #1
0
 public CarDetailController(IAllCars allCars, ICarsCategory allCategories, IHubContext <EventHub> hubContext, ILogger <AccountController> logger)
 {
     _allCars       = allCars;
     _allCategories = allCategories;
     _hubContext    = hubContext;
     _logger        = logger;
 }
Example #2
0
 public CarsController(IAllCars iAllCars, ICarsCategory iCarsCat, AppDBContent appDB, IHostingEnvironment appEnvironment)
 {
     //_allCompanies = iAllCompanies;
     _allCars        = iAllCars;
     _allCategories  = iCarsCat;
     db              = appDB;
     _appEnvironment = appEnvironment;
 }
Example #3
0
 public BetsPagesController(IAllCars allCars, ICarsCategory carsCategory)
 {
     _allCars       = allCars;
     _allCategories = carsCategory;
 }
Example #4
0
 public HomeController(IAllCars carRepository)
 {
     _carRepository = carRepository;
 }
Example #5
0
 public ShopCartController(IAllCars carRep, ShopCart shopCart)
 {
     this._carRep   = carRep;
     this._shopCart = shopCart;
 }
Example #6
0
 public CategoryController(IAllCars allCars)
 {
     this.allCars = allCars;
 }
Example #7
0
 public HomeController(IAllCars allCars)
 {
     _allCars = allCars;
 }
Example #8
0
 public CarsController(IAllCars allCars, ICarsCategory allCategories)
 {
     _allCars       = allCars;
     _allCategories = allCategories;
 }
Example #9
0
 public ShopCartController(IAllCars _carRep, ShopCart _shopCart)
 {
     this._carRep   = _carRep;
     this._shopCart = _shopCart;
 }
Example #10
0
 public CarsController(IAllCars allCars, ICarsCategory CarsCategory)
 {
     _allCars = allCars; _allCategories = CarsCategory;
 }
Example #11
0
 public CarController(IAllCars allCars, ICarCategory carCategory)
 {
     __allCars       = allCars;
     __allCategories = carCategory;
 }
Example #12
0
 public MarketCartController(IAllCars carRep, Cart cart)
 {
     _carRepository = carRep;
     _cart          = cart;
 }
Example #13
0
 public CarsController(IAllCars iAllCars, ICarCategory iCarCategory)
 {
     allCars       = iAllCars;
     allCategories = iCarCategory;
 }
Example #14
0
 public SearchController(IAllCars iAllCars)
 {
     _allCars = iAllCars;
 }
Example #15
0
 public ShopCartController(IAllCars carRepository, ShopCart shopCart)
 {
     _CarRep   = carRepository;
     _shopCart = shopCart;
 }
Example #16
0
 public CarsController(IAllCars AllCars, ICarsCategory CarsCategory) // Конструктор контроллера машин
 {
     _allCars       = AllCars;
     _allCategories = CarsCategory;
 }
Example #17
0
 public AdminController(AppDbContent content, IAllCars allCars)
 {
     this.content = content;
     this.allCars = allCars;
 }
 public CarsController(IAllCars iallcars, ICarsCategory icarsCat)
 {
     _allCars      = iallcars;
     _carsCategory = icarsCat;
 }
 public ShopCartController(IAllCars _CarRep, ShopCart _ShopCart)
 {
     this._CarRep   = _CarRep;
     this._ShopCart = _ShopCart;
 }
Example #20
0
 public CarsController(IAllCars iallCars, ICarsCategory icarsCategory)
 {
     allCars      = iallCars;
     carsCategory = icarsCategory;
 }
Example #21
0
 public CarController(IAllCars IAllCars, ICarsCategory IAllCategories)
 {
     _allCars       = IAllCars;
     _allCategories = IAllCategories;
 }
Example #22
0
 public HomeController(IAllCars _carRep)
 {
     this._carRep = _carRep;
 }
Example #23
0
 public SellCartController(IAllCars carRepository, SellCart sellCart)
 {
     _carRepository = carRepository;
     _sellCart      = sellCart;
 }
Example #24
0
 public CarsController(IAllCars allCars, ICarsCategory allCarsCategory)
 {
     this.allCars         = allCars;
     this.allCarsCategory = allCarsCategory;
 }
Example #25
0
 public HomeController(IAllCars carRep)
 {
     _carRep = carRep;
 }
Example #26
0
 public AdminController(IAllCars allCars)
 {
     this.allCars = allCars;
 }
Example #27
0
 public CarsController(IAllCars iAllCars, ICarsCategory iCarsCat)
 {
     _allCars       = iAllCars;
     _allCategories = iCarsCat;
 }
Example #28
0
 public CarsController(IAllCars iAllCars) => _allCars = iAllCars;
Example #29
0
 public ShopCartController(IAllCars carRep, ShopCart shopCart)
 {
     _allCars  = carRep;
     _shopCart = shopCart;
 }
Example #30
0
 public CarsController(IAllCars iAllCars, ICarCathegory iCarCathegory)
 {
     AllCars        = iAllCars;
     AllCathegories = iCarCathegory;
 }