Exemple #1
0
 public WeatherController(IWeatherAppService service)
 {
     _service = service;
 }
 public WeatherReportController()
 {
     WeatherAppService = new WeatherAppService();
 }
Exemple #3
0
 public SampleDataController(IWeatherAppService weatherAppService)
 {
     _weatherAppService = weatherAppService;
 }
Exemple #4
0
 public WeatherController(IWeatherAppService weatherAppService)
 {
     _weatherAppService = weatherAppService ?? throw new ArgumentNullException(nameof(weatherAppService));
 }
Exemple #5
0
 public WeatherAppController(IWeatherAppService weatherAppService)
 {
     _weatherAppService = weatherAppService;
 }
Exemple #6
0
 public HomeController(IWeatherAppService service)
 {
     this._service = service;
 }