public WeatherForecastController(ILogger <WeatherForecastController> logger,
                                  IWeatherForecastManager weatherForecastManager,
                                  IConverter <IList <WeatherForecast>, GrafanaTable> weatherForecastToGrafanaTableConverter)
 {
     _logger = logger;
     _weatherForecastManager = weatherForecastManager;
     _weatherForecastToGrafanaTableConverter = weatherForecastToGrafanaTableConverter;
 }
コード例 #2
0
 public WeatherForecastController(IWeatherForecastManager weatherForecastManager)
 {
     _weatherForecastManager = weatherForecastManager;
 }