Beispiel #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;
 }
Beispiel #3
0
 public EditModel(IPetService petService,
                  IGroupService groupService,
                  IPatternService patternService,
                  IBodyTypeService bodyTypeService,
                  IEyeColorService eyeColorService,
                  ILogger <EditModel> logger)
 {
     _petService      = petService;
     _bodyTypeService = bodyTypeService;
     _eyeColorService = eyeColorService;
     _patternService  = patternService;
     _groupService    = groupService;
     _logger          = logger;
 }
 // step 1: add constuctor
 public CreateModel(IPetService petService,
                    IBodyTypeService bodyTypeService,
                    IEyeColorService eyeColorService,
                    IPatternService patternService,
                    IGroupService groupService,
                    ILogger <CreateModel> logger)
 {
     // step 2: inject ieyecolor servive
     _petService      = petService;
     _bodyTypeService = bodyTypeService;
     _eyeColorService = eyeColorService;
     _patternService  = patternService;
     _groupService    = groupService;
     _logger          = logger;
 }
Beispiel #5
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;
 }
 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;
 }
Beispiel #7
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;
 }
Beispiel #8
0
 // step 1: add constructor
 public DeleteModel(IBodyTypeService bodyTypeService)
 {
     // step 2: inject ibodytype service
     _bodyTypeService = bodyTypeService;
 }
 // step 1: add constuctor
 public IndexModel(IBodyTypeService bodyTypeService)
 {
     // step 2: inject ibodytype servive
     _bodyTypeService = bodyTypeService;
 }
Beispiel #10
0
 // step 1: add constructor
 public EditModel(IBodyTypeService bodyTypeService, ILogger <EditModel> logger)
 {
     // step 2: inject ibodytype service
     _bodyTypeService = bodyTypeService;
     _logger          = logger;
 }
Beispiel #11
0
 // step 1: add constuctor
 public CreateModel(IBodyTypeService bodyTypeService, ILogger <CreateModel> logger)
 {
     // step 2: inject ibodytype servive
     _bodyTypeService = bodyTypeService;
     _logger          = logger;
 }
Beispiel #12
0
 public EditModel(IBodyTypeService bodyTypeService, ILogger <EditModel> logger)
 {
     _bodyTypeService = bodyTypeService;
     _logger          = logger;
 }
 public VehicleController(IVehicleDetailService vehicleDetailService, IVehicleTypeService vehicleTypeService, IBodyTypeService bodyTypeService)
 {
     _vehicleDetailService = vehicleDetailService;
     _vehicleTypeService   = vehicleTypeService;
     _bodyTypeService      = bodyTypeService;
 }
 public BodyTypesController(IBodyTypeService bodyTypeService)
 {
     _bodyTypeService = bodyTypeService;
 }
 public DeleteModel(IBodyTypeService bodyTypeService)
 {
     _bodyTypeService = bodyTypeService;
 }
 public CreateModel(IBodyTypeService bodyTypeService, ILogger <CreateModel> logger)
 {
     _bodyTypeService = bodyTypeService;
     _logger          = logger;
 }
Beispiel #17
0
 public BodyTypeController(IBodyTypeService bodyTypeService, IMapper mapper)
 {
     this.bodyTypeService = bodyTypeService;
     this.mapper          = mapper;
 }
 public IndexModel(IBodyTypeService bodyTypeService)
 {
     _bodyTypeService = bodyTypeService;
 }