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