/* Constructor with a city */ public CityContract(City c) { this.CityId = c.city_id; this.Name = c.city1; this.Latitude = c.latitude; this.Longitude = c.longitude; }
/* City to City contract */ public static CityContract ToContract(City c) { return new CityContract(c); }