Ejemplo n.º 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);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Create a new Country object.
 /// </summary>
 /// <param name="countryId">Initial value of the CountryId property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="code">Initial value of the Code property.</param>
 public static Country CreateCountry(global::System.Int32 countryId, global::System.String name, global::System.String code)
 {
     Country country = new Country();
     country.CountryId = countryId;
     country.Name = name;
     country.Code = code;
     return country;
 }