예제 #1
0
        public LocationController(
            IErrorLogger errorLogger,
            IGooglePlacesAPI googlePlacesAPI,
            IWeatherAPI weatherAPI

            )
        {
            _errorLogger     = errorLogger;
            _googlePlacesAPI = googlePlacesAPI;
            _weatherAPI      = weatherAPI;
        }
예제 #2
0
 public TemperatureService(IWeatherAPI weatherAPI)
 {
     _weatherAPI = weatherAPI;
 }