Example #1
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Countries EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToCountries(Country country)
 {
     base.AddObject("Countries", country);
 }
Example #2
0
 /// <summary>
 /// Create a new Country object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="countryName">Initial value of the CountryName property.</param>
 public static Country CreateCountry(global::System.Int32 id, global::System.String countryName)
 {
     Country country = new Country();
     country.Id = id;
     country.CountryName = countryName;
     return country;
 }