public MeetingPointController(AppSettings appSettings, IHereService hereService, DBRepository dbRepository, IRouteSearcher routeSearcher)
 {
     _hereService   = hereService;
     _dbRepository  = dbRepository;
     _routeSearcher = routeSearcher;
     _appSettings   = appSettings;
 }
Exemplo n.º 2
0
 public SearchController(IRouteSearcher routeSearcher, IHereService hereService,
                         DataService dataService)
 {
     _routeSearcher = routeSearcher;
     _hereService   = hereService;
     _dataService   = dataService;
 }
 public CompaniesController(ApplicationDbContext context, IHereService hereS)
 {
     _here    = hereS;
     _context = context;
 }
Exemplo n.º 4
0
 public RouteSearcher(IHereService hereService, DbRepository dbRepository)
 {
     _hereService  = hereService;
     _dbRepository = dbRepository;
 }
 public SuggestionSearcher(IHereService hereService, DbRepository dbRepository)
 {
     _hereService  = hereService;
     _dbRepository = dbRepository;
 }
 public RouteSearcher(IHereService hereService)
 {
     _hereService = hereService;
 }
Exemplo n.º 7
0
 public RouteSearcherController(IHereService hereService, IRouteSearcher routeSearcher, ISuggestionSearcher suggestionSearcher)
 {
     _hereService        = hereService;
     _routeSearcher      = routeSearcher;
     _suggestionSearcher = suggestionSearcher;
 }