Пример #1
0
 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;
 }
Пример #2
0
 public VehicleAllotmentController(IUserMasterService userMasterService,
                                   IModelMasterService modelsMasterService,
                                   IVarientMasterService varientMasterService,
                                   IDesignationMasterService designationMasterService,
                                   IStateListService stateListService,
                                   IVehiclesMasterService vehicleMasterService,
                                   ICustomerService customerService,
                                   IVehicleAllotmentService vehicleAllotmentService,
                                   IBranchMasterService branchMasterService,
                                   ICoDealerMasterService coDealerMasterService)
 {
     _userMasterService        = userMasterService;
     _modelsMasterService      = modelsMasterService;
     _varientMasterService     = varientMasterService;
     _designationMasterService = designationMasterService;
     _stateListService         = stateListService;
     _vehicleMasterService     = vehicleMasterService;
     _customerService          = customerService;
     _vehicleAllotmentService  = vehicleAllotmentService;
     _branchMasterService      = branchMasterService;
     _coDealerMasterService    = coDealerMasterService;
 }