Example #1
0
 public RouteController(IRouteService routeService, ILocationService locationService, IVehicleService vehicleService, IAgentService agentService, IConstService constService, IMapper mapper) : base(mapper)
 {
     _routeService    = routeService;
     _locationService = locationService;
     _vehicleService  = vehicleService;
     _agentService    = agentService;
     _constService    = constService;
 }
 public ConstController(IConstService constService, IMapper mapper) : base(mapper)
 {
     _constService = constService;
 }