/// <summary> /// Create a new Ciudad object. /// </summary> /// <param name="id">Initial value of the Id property.</param> /// <param name="paisId">Initial value of the PaisId property.</param> /// <param name="nombre">Initial value of the Nombre property.</param> public static Ciudad CreateCiudad(global::System.Int32 id, global::System.Int32 paisId, global::System.String nombre) { Ciudad ciudad = new Ciudad(); ciudad.Id = id; ciudad.PaisId = paisId; ciudad.Nombre = nombre; return ciudad; }
/// <summary> /// Deprecated Method for adding a new object to the Ciudad EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToCiudad(Ciudad ciudad) { base.AddObject("Ciudad", ciudad); }