/// <summary> /// Create a new Altura object. /// </summary> /// <param name="id">Initial value of the id property.</param> /// <param name="calle_id">Initial value of the calle_id property.</param> /// <param name="desde">Initial value of the desde property.</param> /// <param name="hasta">Initial value of the hasta property.</param> /// <param name="vereda">Initial value of the vereda property.</param> /// <param name="barrio">Initial value of the barrio property.</param> public static Altura CreateAltura(global::System.Int32 id, global::System.Int32 calle_id, global::System.Int32 desde, global::System.Int32 hasta, global::System.Int16 vereda, global::System.String barrio) { Altura altura = new Altura(); altura.id = id; altura.calle_id = calle_id; altura.desde = desde; altura.hasta = hasta; altura.vereda = vereda; altura.barrio = barrio; return altura; }
public Altura CreateAltura(Calle calle) { var altura = new CoreSQL.Entities.Altura(); altura.calle_id = calle.id; return altura; }
/// <summary> /// Deprecated Method for adding a new object to the zonas_altura EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddTozonas_altura(Altura altura) { base.AddObject("zonas_altura", altura); }
public void Save(Altura altura) { // TODO: Hacer un update if (altura.id == 0) { if (altura.barrio == null) altura.barrio = ""; this._db.zonas_altura.AddObject(altura); } this._db.SaveChanges(); }