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;
 }
Example #2
0
 public BuyerController(ICarBuyerInfoService buyerService,
     ICarSellerVehicleInfoService carsellervehicleinfoService,
     ICarSellerVehicleImagesService carsellervehicleimageService, IAspNetUserService aspNetUserService, ICarSellerInfoService carsellerinfoService, ISellerPersonalInfoService sellerPersonalInfoService, IAuctionHouseService auctionHouseService, IAuctionHouseSaleService auctionHouseSaleService, IAuctionHouseAddEditVehicleService auctionHouseAddEditVehicleService, ICarSellerVehicleFuelTypeService carSellerVehicleFuelTypeService, IAuctionHouseCarSellingVehicleImagesService auctionHouseCarSellingVehicleImagesService)
 {
     _buyerService = buyerService;
     _carsellervehicleinfoService = carsellervehicleinfoService;
     _carsellervehicleimageService = carsellervehicleimageService;
     _aspNetUserService = aspNetUserService;
     _carsellerinfoService = carsellerinfoService;
     _sellerPersonalInfoService = sellerPersonalInfoService;
     _auctionHouseService = auctionHouseService;
     _auctionHouseSaleService = auctionHouseSaleService;
     _auctionHouseAddEditVehicleService = auctionHouseAddEditVehicleService;
     _carSellerVehicleFuelTypeService = carSellerVehicleFuelTypeService;
     _auctionHouseCarSellingVehicleImagesService = auctionHouseCarSellingVehicleImagesService;
 }
Example #3
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;
 }