Beispiel #1
0
 public TripController(ApplicationDbContext context,
                       IStopHandler stopHandler)
 {
     _context     = context;
     _stopHandler = stopHandler;
 }
Beispiel #2
0
 public MapViewController(IStopHandler stopHandler, ApplicationDbContext dbContext, Settings settings)
 {
     _applicationDbContext = dbContext;
     _stopHandler          = stopHandler;
     _settings             = settings;
 }
 public WelcomeController(ApplicationDbContext applicationDbContext, IStopHandler stopHandler)
 {
     _stopHandler          = stopHandler;
     _applicationDbContext = applicationDbContext;
 }
Beispiel #4
0
 public MapViewController(IStopHandler stopHandler, ApplicationDbContext dbContext)
 {
     _applicationDbContext = dbContext;
     _stopHandler          = stopHandler;
 }