public LogisticianController(IRouteService routeService, ITrainService trainservice, ICarriageService carriageservice, IRouteDateService routedateservice)
 {
     _trainService     = trainservice;
     _carriageService  = carriageservice;
     _routeService     = routeService;
     _routeDateService = routedateservice;
 }
Example #2
0
 public HomeController(IStationService stationservice, IRouteService routeService, ITrainService trainservice, IRouteDateService routedateservice, ICarriageService carriageservice, IRouteStationService routestationservice)
 {
     _routeDateService    = routedateservice;
     _stationService      = stationservice;
     _trainService        = trainservice;
     _carriageService     = carriageservice;
     _routeService        = routeService;
     _routeStationService = routestationservice;
 }