/// <summary>
 /// Create a new Pais object.
 /// </summary>
 /// <param name="idPais">Initial value of the IdPais property.</param>
 /// <param name="sigla">Initial value of the Sigla property.</param>
 /// <param name="nome">Initial value of the Nome property.</param>
 public static Pais CreatePais(global::System.Int32 idPais, global::System.String sigla, global::System.String nome)
 {
     Pais pais = new Pais();
     pais.IdPais = idPais;
     pais.Sigla = sigla;
     pais.Nome = nome;
     return pais;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the Pais EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToPais(Pais pais)
 {
     base.AddObject("Pais", pais);
 }