/// <summary>
 /// Create a new Cidade object.
 /// </summary>
 /// <param name="idCidade">Initial value of the IdCidade property.</param>
 /// <param name="idEstado">Initial value of the IdEstado property.</param>
 /// <param name="nome">Initial value of the Nome property.</param>
 public static Cidade CreateCidade(global::System.Int32 idCidade, global::System.Int32 idEstado, global::System.String nome)
 {
     Cidade cidade = new Cidade();
     cidade.IdCidade = idCidade;
     cidade.IdEstado = idEstado;
     cidade.Nome = nome;
     return cidade;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the Cidade EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToCidade(Cidade cidade)
 {
     base.AddObject("Cidade", cidade);
 }