예제 #1
0
파일: Smart.cs 프로젝트: Inumedia/Smart
 public Smart(IForecast weather, IGeoTranslate geo)
 {
     this.geo = geo;
     this.weather = weather;
 }
예제 #2
0
 public ForecastIO(IGeoTranslate geoTranslator, IOptions<ForecastOptions> options)
 {
     this.options = options.Value;
     this.geo = geoTranslator;
 }
예제 #3
0
 public ForecastIO(IGeoTranslate geoTranslator, IOptions <ForecastOptions> options)
 {
     this.options = options.Value;
     this.geo     = geoTranslator;
 }
예제 #4
0
 public Smart(IForecast weather, IGeoTranslate geo)
 {
     this.geo     = geo;
     this.weather = weather;
 }