Beispiel #1
0
        public LocationService(GoogleClient googleClient, LocationRepo locationRepo, PlaceRepo placeRepo)
        {
            _googleClient = googleClient;
            _locationRepo = locationRepo;
            _placeRepo    = placeRepo;

            InitHomeLocation();
        }
Beispiel #2
0
 public LocationService(GoogleClient googleClient, LocationRepo locationRepo)
 {
     _googleClient = googleClient;
     _locationRepo = locationRepo;
 }