/// <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; }
/// <summary> /// Deprecated Method for adding a new object to the Countries EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToCountries(Country country) { base.AddObject("Countries", country); }