/// <summary>
 /// Deprecated Method for adding a new object to the Estados EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToEstados(Estado estado)
 {
     base.AddObject("Estados", estado);
 }
 /// <summary>
 /// Create a new Estado object.
 /// </summary>
 /// <param name="descricao">Initial value of the Descricao property.</param>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="sigla">Initial value of the Sigla property.</param>
 public static Estado CreateEstado(global::System.String descricao, global::System.Int64 id, global::System.String sigla)
 {
     Estado estado = new Estado();
     estado.Descricao = descricao;
     estado.Id = id;
     estado.Sigla = sigla;
     return estado;
 }