Exemplo n.º 1
0
 /// <summary>
 /// Create a city in the underlying datastore using the fields supplied
 /// </summary>
 /// <param name="name">Name of the city</param>
 /// <param name="state">Name of the state the city is in</param>
 /// <param name="country">Name of the country the city is in</param>
 /// <returns></returns>
 public static BoolMessageItem <City> CreateCity(string name, string state, string country)
 {
     return(_provider.CreateCity(name, state, country));
 }