/// <summary>
 /// Deprecated Method for adding a new object to the estado EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToestado(estado estado)
 {
     base.AddObject("estado", estado);
 }
 /// <summary>
 /// Create a new estado object.
 /// </summary>
 /// <param name="id">Initial value of the id property.</param>
 /// <param name="nombre">Initial value of the nombre property.</param>
 /// <param name="pais_id">Initial value of the pais_id property.</param>
 public static estado Createestado(global::System.Int32 id, global::System.String nombre, global::System.Int32 pais_id)
 {
     estado estado = new estado();
     estado.id = id;
     estado.nombre = nombre;
     estado.pais_id = pais_id;
     return estado;
 }