public GeolocationService(IGeolocationRepository geolocationRepository, IIpDetailsService service, INetworkAddress networkAddress) { _geolocationRepository = geolocationRepository; _service = service; _networkAddress = networkAddress; }
public GeolocatesController(ILogger logger, IGeolocationRepository geolocationRepository, IGeolocationService geolocationService, Services.RestClient.Interface.IRestClient restClient) { _logger = logger; _geolocationRepository = geolocationRepository; _geolocationService = geolocationService; _restClient = restClient; }
public GeolocationService(IGeolocationRepository geolocationRepository, IUnitOfWork unitOfWork) { _geolocationRepository = geolocationRepository; _unitOfWork = unitOfWork; }
public WayfarerHub(IProfileRepository profileRepo, IGeolocationRepository geolocRepo, ISearchRepository searchRepo) { this._profileRepo = profileRepo; this._geolocRepo = geolocRepo; this._searchRepo = searchRepo; }