public DarkSkyController() : base()
 {
     this.darkSkyAPIEndpoint     = new DarkSkyAPIEndpoint();
     this.accuWeatherAPIEndpoint = new AccuWeatherAPIEndpoint();
 }
 public Weather2020Controller() : base()
 {
     this.weather2020APIEndpoint = new Weather2020APIEndpoint();
     this.accuWeatherAPIEndpoint = new AccuWeatherAPIEndpoint();
 }
 public AccuWeatherController() : base()
 {
     this.accuWeatherAPIEndpoint = new AccuWeatherAPIEndpoint();
 }
Exemple #4
0
 public ClimaCellController() : base()
 {
     this.climaCellAPIEndpoint   = new ClimaCellAPIEndpoint();
     this.accuWeatherAPIEndpoint = new AccuWeatherAPIEndpoint();
 }