コード例 #1
0
ファイル: TimeService.cs プロジェクト: KL44S/WeatherAPI
 public TimeService(IGenericRestService genericRestService, IWorldTimeMapper worldTimeMapper)
 {
     this._genericRestService = genericRestService;
     this._worldTimeMapper    = worldTimeMapper;
 }
コード例 #2
0
ファイル: LocationFinder.cs プロジェクト: KL44S/WeatherAPI
 public LocationFinder(IGenericRestService genericRestService, IKeyCDNGeoIpLocationMapper locationMapper)
 {
     this._genericRestService = genericRestService;
     this._locationMapper     = locationMapper;
 }
コード例 #3
0
 public WeatherStateService(IGenericRestService genericRestService, IOpenWeatherMapper weatherMapper)
 {
     this._genericRestService = genericRestService;
     this._weatherMapper      = weatherMapper;
 }