public GatePassMasterController(IVehicleAllotmentService vehicleAllotmentService, IVehiclesMasterService vehicleMasterService, IUserMasterService userMasterService, ICustomerService customerService, IBranchMasterService branchMasterService, IViewToStringRendererService viewToStringRendererService, IShowroomVehiclesService showroomVehiclesService, IPDIVehiclesService pdiVehicesService, IGatePassService gatePassService) { _vehicleAllotmentService = vehicleAllotmentService; _vehicleMasterService = vehicleMasterService; _userMasterService = userMasterService; _customerService = customerService; _branchMasterService = branchMasterService; _viewToStringRendererService = viewToStringRendererService; _showroomVehiclesService = showroomVehiclesService; _pdiVehicesService = pdiVehicesService; _gatePassService = gatePassService; }
public GenerateQuotationController(IUserMasterService userMasterService, IModelMasterService modelsMasterService, IWebHostEnvironment hostingEnvironment, IViewToStringRendererService viewToStringRendererService, IVarientMasterService varientMasterService, IDesignationMasterService designationMasterService, IStateListService stateListService, ICustomerService customerService, IQuotationManagerService quotationManagerService, IColourMasterService colourMasterService, IPriceListMasterService priceListMasterService) { _userMasterService = userMasterService; _modelsMasterService = modelsMasterService; _hostingEnvironment = hostingEnvironment; _viewToStringRendererService = viewToStringRendererService; _varientMasterService = varientMasterService; _designationMasterService = designationMasterService; _stateListService = stateListService; _customerService = customerService; _quotationManagerService = quotationManagerService; _colourMasterService = colourMasterService; _priceListMasterService = priceListMasterService; }
public BannerController(IViewToStringRendererService viewRenderer, IBannerProviderFactory bannerProviderFactory) { _bannerProviderFactory = bannerProviderFactory; _viewRenderer = viewRenderer; }
public BannerController(IPizzaRepo pizzaRepo, IViewToStringRendererService viewToStringRenderer) { _viewToStringRenderer = viewToStringRenderer; _pizzaRepo = pizzaRepo; }