Example #1
0
 /// <summary>
 /// Create a new Country object.
 /// </summary>
 /// <param name="idCountry">Initial value of the idCountry property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="codeISO3166">Initial value of the CodeISO3166 property.</param>
 public static Country CreateCountry(global::System.Int32 idCountry, global::System.String name, global::System.String codeISO3166)
 {
     Country country = new Country();
     country.idCountry = idCountry;
     country.Name = name;
     country.CodeISO3166 = codeISO3166;
     return country;
 }
Example #2
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);
 }