public MeetingPointController(AppSettings appSettings, IHereService hereService, DBRepository dbRepository, IRouteSearcher routeSearcher) { _hereService = hereService; _dbRepository = dbRepository; _routeSearcher = routeSearcher; _appSettings = appSettings; }
public SearchController(IRouteSearcher routeSearcher, IHereService hereService, DataService dataService) { _routeSearcher = routeSearcher; _hereService = hereService; _dataService = dataService; }
public CompaniesController(ApplicationDbContext context, IHereService hereS) { _here = hereS; _context = context; }
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; }
public RouteSearcherController(IHereService hereService, IRouteSearcher routeSearcher, ISuggestionSearcher suggestionSearcher) { _hereService = hereService; _routeSearcher = routeSearcher; _suggestionSearcher = suggestionSearcher; }