Exemple #1
0
		public List<Road> GetRoads(int cityId)
		{
			LocationService loc = new LocationService(auth);
			return loc.GetRoads(cityId);
		}
Exemple #2
0
		public List<District> GetDistricts(int cityId)
		{
			LocationService loc = new LocationService(auth);
			return loc.GetDistricts(cityId);
		}
Exemple #3
0
		public List<Metro> GetMetro(int cityId)
		{
			LocationService loc = new LocationService(auth);
			return loc.GetMetros(cityId);
		}
Exemple #4
0
		public List<City> GetCities(int regionId)
		{
			LocationService loc = new LocationService(auth);
			return loc.GetCities(regionId);
		}
Exemple #5
0
		public List<Region> GetRegions()
		{
			LocationService loc = new LocationService(auth);
			return loc.GetRegions();
		}
Exemple #6
0
		public UserLocation GetDefaultLocation()
		{
			LocationService loc = new LocationService(auth);
			return loc.Default();
		}