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