public GalaxyController(IGalaxyService galaxy)
 {
     this.galaxyService = galaxy;
 }
 public POITypeaheadController(IGalaxyService galaxyService)
 {
     this.galaxyService = galaxyService;
 }
Beispiel #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="WeatherController"/> class.
 /// </summary>
 /// <param name="galaxyService">The galaxy service.</param>
 public WeatherController(IGalaxyService galaxyService)
 {
     _galaxyService = galaxyService;
 }
Beispiel #4
0
 public ScenicSuggestionsController(IGalaxyService galaxyService, ILogger <ScenicSuggestionsController> logger)
 {
     galaxy = galaxyService;
     Logger = logger;
 }