Esempio n. 1
0
 public WeatherForecastUseCase(IOutputPort output, IGetWeatherForecast getWeather)
 {
     this.getWeather = getWeather;
     this.output     = output;
 }
 public WeatherForecastController(IGetWeatherForecast getWeatherForecast)
 {
     _log = Log.ForContext <WeatherForecastController>();
     _getWeatherForecast = getWeatherForecast;
 }