Ejemplo n.º 1
0
 public QuartzStartup(IServiceProvider container, WeatherSettings weatherSettings)
 {
     _container       = container;
     _weatherSettings = weatherSettings;
 }
 public WeatherDataLoadService(HttpClient client, WeatherSettings weatherSettings)
 {
     _httpClient      = client;
     _weatherSettings = weatherSettings;
 }
Ejemplo n.º 3
0
 public HostService(IServiceProvider serviceProvider, WeatherSettings weatherSettings, IQuartzStartup quartzStartup)
 {
     _serviceProvider = serviceProvider;
     _weatherSettings = weatherSettings;
     _quartzStartup   = quartzStartup;
 }