Пример #1
0
     public CarSellerController(
     IAspNetUserService aspNetUserService,
     IBodyTypeService bodyTypeService,
     ICarSellerTypeService carSellerTypeService,
     ICarSellingOnService carSellingOnService,
     ICarSellerInfoService carSellerInfoService,
     ICarModelService carModelService,
     IMakeService makeService,
     ITransmissionTypeService transmissionTypeService,
     IFuelTypeService fuelTypeService,
     ICarSellerVehicleInfoService carSellerVehicleInfoService,
     ICarSellerMoreDetailService carSellerMoreDetailService,
     ICarSellerVehicleImagesService carSellerVehicleImagesService,
         ICarSellerVehicleFuelTypeService carSellerVehicleFuelTypeService,
         IEngineSizeService engineSizeService
 )
     {
         _aspNetUserService = aspNetUserService;
         _carSellerTypeService = carSellerTypeService;
         _carSellingOnService = carSellingOnService;
         _bodyTypeService = bodyTypeService;
         _carModelService = carModelService;
         _makeService = makeService;
         _transmissionTypeService = transmissionTypeService;
         _fuelTypeService = fuelTypeService;
         _carSellerVehicleInfoService = carSellerVehicleInfoService;
         _carSellerMoreDetailService = carSellerMoreDetailService;
         _carSellerVehicleImagesService = carSellerVehicleImagesService;
         _carSellerInfoService = carSellerInfoService;
         _carSellerVehicleFuelTypeService = carSellerVehicleFuelTypeService;
         _engineSizeService = engineSizeService;
     }
 public AuctionHouseAddEditVehicleController(
     IAuctionHouseService auctionHouseService,
     IAspNetUserService aspNetUserService,
     IBodyTypeService bodyTypeService,
     ICarModelService carModelService,
     IMakeService makeService,
     ITransmissionTypeService transmissionTypeService,
     IFuelTypeService fuelTypeService,
     IEngineSizeService engineSizeService,
     IAuctionHouseAddEditVehicleService auctionHouseAddEditVehicleService,
     IAuctionHouseCarSellingVehicleImagesService auctionHouseCarSellingVehicleImagesService,
      IAuctionHouseSaleService auctionHouseSaleService,
     IAuctionHouseCarSellingVehicleImagesMoreService auctionHouseCarSellingVehicleImagesMoreService,
     IInteriorTrimService interiorTrimService,
     IServiceHistoryAuctionService serviceHistoryAuctionService,
      ICheckStatusService checkStatusService
     )
 {
     _auctionHouseService = auctionHouseService;
     _aspNetUserService = aspNetUserService;
     _bodyTypeService = bodyTypeService;
     _carModelService = carModelService;
     _makeService = makeService;
     _transmissionTypeService = transmissionTypeService;
     _fuelTypeService = fuelTypeService;
     _engineSizeService = engineSizeService;
     _auctionHouseAddEditVehicleService = auctionHouseAddEditVehicleService;
     _auctionHouseCarSellingVehicleImagesService = auctionHouseCarSellingVehicleImagesService;
     _auctionHouseSaleService = auctionHouseSaleService;
     _auctionHouseCarSellingVehicleImagesMoreService = auctionHouseCarSellingVehicleImagesMoreService;
     _interiorTrimService = interiorTrimService;
     _serviceHistoryAuctionService = serviceHistoryAuctionService;
     _checkStatusService = checkStatusService;
 }
Пример #3
0
 public CreateModel(IVehicleService vehicleService, IVehicleColorService vehicleColorService, IFuelTypeService fuelTypeService,
                    IModelService modelService, IManufacturerService manufacturerService, ITransmissionTypeService transmissionTypeService, IVehicleTypeService vehicleTypeService)
 {
     _vehicleService          = vehicleService;
     _vehicleColorService     = vehicleColorService;
     _fuelTypeService         = fuelTypeService;
     _modelService            = modelService;
     _manufacturerService     = manufacturerService;
     _transmissionTypeService = transmissionTypeService;
     _vehicleTypeService      = vehicleTypeService;
 }
Пример #4
0
 public CarManager(ICarDal carDal, IRentalService rentalService, ICarImageService carImageService, IBrandService brandService, IColorService colorService, ICarCreditScoreService carCreditScoreService, IFuelTypeService fuelTypeService, IGearTypeService gearTypeService)
 {
     _carDal                = carDal;
     _rentalService         = rentalService;
     _carImageService       = carImageService;
     _brandService          = brandService;
     _colorService          = colorService;
     _carCreditScoreService = carCreditScoreService;
     _fuelTypeService       = fuelTypeService;
     _gearTypeService       = gearTypeService;
 }
Пример #5
0
 public VehicleController(IVehicleService service, IColorTypeService colorTypeService, IFuelTypeService fuelTypeService, ITireTypeService tireTypeService, ITransmissionTypeService transmissionTypeService, IVehicleBrandService vehicleBrandService, IVehicleClassTypeService vehicleClassTypeService, IVehicleModelService vehicleModelService)
 {
     VehicleService          = service;
     ColorTypeService        = colorTypeService;
     FuelTypeService         = fuelTypeService;
     TireTypeService         = tireTypeService;
     TransmissionTypeService = transmissionTypeService;
     VehicleBrandService     = vehicleBrandService;
     VehicleClassTypeService = vehicleClassTypeService;
     VehicleModelService     = vehicleModelService;
 }
Пример #6
0
 public CarController(ICarService carService, UserManager <IdentityUser> userManager,
                      IGenericRepository <Car> genericRepository, IBrandService brandService,
                      IModelService modelService, IFuelTypeService fuelTypeService, ILocationService locationService, ICarUploadService carUploadService)
 {
     _carService        = carService;
     _userManager       = userManager;
     _genericRepository = genericRepository;
     _brandService      = brandService;
     _modelService      = modelService;
     _fuelTypeService   = fuelTypeService;
     _locationService   = locationService;
     _carUploadService  = carUploadService;
 }
Пример #7
0
 public CarsController(
     ICarService carService,
     IManufacturerService manufacturerService,
     IModelService modelService,
     IFuelTypeService fuelTypeService,
     ITransmissionTypesService transmissionTypeService,
     IDepartmentService departmentService
     )
 {
     this.carService              = carService;
     this.modelService            = modelService;
     this.fuelTypeService         = fuelTypeService;
     this.transmissionTypeService = transmissionTypeService;
 }
Пример #8
0
 public AdminController(IFuelTypeService fuelTypeService, IColorTypeService colorTypeService,
                        IBodyTypeService bodyTypeService,
                        IGearTypeService gearTypeService, IModelService modelService, IUserService userService, ICarService carService, IBrandService brandService, IExtraService extraService, IColorService colorService)
 {
     this.brandService     = brandService;
     this.fuelTypeService  = fuelTypeService;
     this.colorTypeService = colorTypeService;
     this.bodyTypeService  = bodyTypeService;
     this.gearTypeService  = gearTypeService;
     this.modelService     = modelService;
     this.userService      = userService;
     this.carService       = carService;
     this.extraService     = extraService;
     this.colorService     = colorService;
 }
Пример #9
0
 public BookingController(IBookingService bookingService, IUserService userService, ILocationService locationService, ICarUploadService carUploadService, IBrandService brandService, IFuelTypeService fuelTypeService, ITransmisionTypeService transmisionTypeService, IModelService modelService, IPreBookingService preBookingService, UserManager <IdentityUser> userManager, IGenericRepository <Booking> genericRepository, IEmailService emailService)
 {
     _bookingService         = bookingService;
     _userService            = userService;
     _locationService        = locationService;
     _carUploadService       = carUploadService;
     _brandService           = brandService;
     _fuelTypeService        = fuelTypeService;
     _transmisionTypeService = transmisionTypeService;
     _modelService           = modelService;
     _preBookingService      = preBookingService;
     _userManager            = userManager;
     _genericRepository      = genericRepository;
     _emailService           = emailService;
 }
Пример #10
0
 public CarController(ICarService carService, IEditCarService editCarService, IBrandService brandService,
                      IBodyTypeService bodyTypeService, IColorTypeService colorTypeService,
                      IFuelTypeService fuelTypeService, IGearTypeService gearTypeService,
                      IModelService modelService, IColorService colorService, IUserService userService, UserManager <User> userManager)
 {
     this.carService       = carService;
     this.editCarService   = editCarService;
     this.brandService     = brandService;
     this.bodyTypeService  = bodyTypeService;
     this.colorTypeService = colorTypeService;
     this.fuelTypeService  = fuelTypeService;
     this.gearTypeService  = gearTypeService;
     this.modelService     = modelService;
     this.colorService     = colorService;
     this.userService      = userService;
     this.userManager      = userManager;
 }
Пример #11
0
 public HomeController(
     ICarSellerVehicleInfoService carSellerVehicleInfoService,
      ICarSellerVehicleImagesService carSellerVehicleImagesService, ICarModelService carModelService, IMakeService makeService, ICarSellerVehicleFuelTypeService carSellerVehicleFuelTypeService, IBodyTypeService bodyTypeService, IFuelTypeService fuelTypeService, ITransmissionTypeService transmissionTyeService, ICarSellerTypeService carSellerTyeService, ICarSellingOnService carSellingOnService, ICarSellerMoreDetailService carSellerMoreDetailService,
      IAuctionHouseAddEditVehicleService auctionHouseAddEditVehicleService,
     IAuctionHouseSaleService auctionHouseSaleService)
 {
     _carSellerVehicleInfoService = carSellerVehicleInfoService;
     _carSellerVehicleImagesService = carSellerVehicleImagesService;
     _carSellerVehicleFuelTypeService = carSellerVehicleFuelTypeService;
     _carModelService = carModelService;
     _makeService = makeService;
     _bodyTypeService = bodyTypeService;
     _fuelTypeService = fuelTypeService;
     _transmissionTyeService = transmissionTyeService;
     _carSellerTyeService = carSellerTyeService;
     _carSellingOnService = carSellingOnService;
     _carSellerMoreDetailService = carSellerMoreDetailService;
     _auctionHouseAddEditVehicleService = auctionHouseAddEditVehicleService;
     _auctionHouseSaleService = auctionHouseSaleService;
 }
Пример #12
0
 public CarDetailsController(ICarSellerVehicleInfoService carsellervehicleinfoService, 
     ICarSellerVehicleImagesService carSellerVehicleImagesService, 
     ICarSellerVehicleFuelTypeService carSellerVehicleFuelTypeService, 
     IAuctionHouseAddEditVehicleService auctionHouseAddEditVehicleService,
     ITransmissionTypeService transmissionTypeService,
     IFuelTypeService fuelTypeService,
     IMakeService makeService,
     ICarModelService carModelService,
     IAuctionHouseCarSellingVehicleImagesService auctionHouseCarSellingVehicleImagesService
     )
 {
     _carsellervehicleinfoService = carsellervehicleinfoService;
     _carSellerVehicleImagesService = carSellerVehicleImagesService;
     _carSellerVehicleFuelTypeService = carSellerVehicleFuelTypeService;
     _auctionHouseAddEditVehicleService = auctionHouseAddEditVehicleService;
     _transmissionTypeService=transmissionTypeService;
     _fuelTypeService=fuelTypeService;
     _makeService = makeService;
     _carModelService = carModelService;
     _auctionHouseCarSellingVehicleImagesService = auctionHouseCarSellingVehicleImagesService;
 }
Пример #13
0
 public VehicleController(IVehicleService vehicleService,
                          IVehicleModelService vehicleModelService,
                          IVehicleClassTypeService vehicleClassTypeService,
                          IColorTypeService colorTypeService,
                          IFuelTypeService fuelTypeService,
                          ITireTypeService tireTypeService,
                          ITransmissionTypeService transmissionTypeService,
                          IVehicleImageService vehicleImageService,
                          IVehicleRentalPriceService vehicleRentalPriceService,
                          IVehicleRentalPriceCalculatorService vehicleRentalPriceCalculatorService,
                          IRentVehicleService rentVehicleService)
 {
     VehicleService                      = vehicleService;
     VehicleModelService                 = vehicleModelService;
     VehicleClassTypeService             = vehicleClassTypeService;
     ColorTypeService                    = colorTypeService;
     FuelTypeService                     = fuelTypeService;
     TireTypeService                     = tireTypeService;
     TransmissionTypeService             = transmissionTypeService;
     VehicleRentalPriceService           = vehicleRentalPriceService;
     VehicleImageService                 = vehicleImageService;
     VehicleRentalPriceCalculatorService = vehicleRentalPriceCalculatorService;
     RentVehicleService                  = rentVehicleService;
 }
Пример #14
0
 public FuelTypeController(IFuelTypeService fuelTypeService)
 {
     FuelTypeService = fuelTypeService;
 }
 public FuelTypeAppService(IFuelTypeService fuelTypeService) : base(fuelTypeService)
 {
     _FuelTypeService = fuelTypeService;
 }
Пример #16
0
 public EditModel(IFuelTypeService fuelTypeService)
 {
     _fuelTypeService = fuelTypeService;
 }
 public FuelTypesViewComponent(IFuelTypeService fuelTypeService)
 {
     this.fuelTypeService = fuelTypeService;
 }
Пример #18
0
 public FuelTypeController(IFuelTypeService fuelTypeService, IGenericRepository <FuelType> genericRepository)
 {
     _fuelTypeService   = fuelTypeService;
     _genericRepository = genericRepository;
 }
Пример #19
0
 public DeleteModel(IFuelTypeService fuelTypeService)
 {
     _fuelTypeService = fuelTypeService;
 }
Пример #20
0
 public HomeController(IGasStationService gasStationService, IFuelTypeService fuelTypeService)
 {
     _gasStationService = gasStationService;
     _fuelTypeService   = fuelTypeService;
 }
Пример #21
0
 public FuelTypeController(IFuelTypeService iFuelTypeService)
 {
     fuelTypeService = iFuelTypeService;
 }
Пример #22
0
 public CreateModel(IFuelTypeService fuelTypeService)
 {
     _fuelTypeService = fuelTypeService;
 }
Пример #23
0
 public FuelTypesController(IFuelTypeService gearTypeService)
 {
     _fuelTypeService = gearTypeService;
 }
Пример #24
0
 public IndexModel(IFuelTypeService fuelTypeService)
 {
     _fuelTypeService = fuelTypeService;
 }