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;
 }
 public AuctionHouseSalesController(
     IAspNetUserService aspNetUserService,
     IAuctionHouseSaleService auctionHouseSaleService,
     IAuctionHouseService auctionHouseService
     )
 {
     _aspNetUserService = aspNetUserService;
     _auctionHouseSaleService = auctionHouseSaleService;
     _auctionHouseService = auctionHouseService;
 }
示例#3
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;
 }
 public AuctionHouseUpcomingSalesController(
      IAuctionHouseAddEditVehicleService auctionHouseAddEditVehicleService,
      IAuctionHouseSaleService auctionHouseSaleService,
      IAuctionHouseService auctionHouseService,
      IMakeService makeService,
      ICarModelService carModelService,
     IAspNetUserService aspNetUserService
      )
 {
     _auctionHouseAddEditVehicleService = auctionHouseAddEditVehicleService;
     _auctionHouseSaleService = auctionHouseSaleService;
     _auctionHouseService = auctionHouseService;
     _makeService = makeService;
     _carModelService = carModelService;
     _aspNetUserService = aspNetUserService;
 }
示例#5
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;
 }