Example #1
0
 /* 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;
 }
Example #2
0
 /* City to City contract */
 public static CityContract ToContract(City c)
 {
     return new CityContract(c);
 }