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