/// <summary> /// Deprecated Method for adding a new object to the producto EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToproducto(producto producto) { base.AddObject("producto", producto); }
/// <summary> /// Create a new producto object. /// </summary> /// <param name="id">Initial value of the id property.</param> /// <param name="nombre">Initial value of the nombre property.</param> /// <param name="descripcion">Initial value of the descripcion property.</param> /// <param name="padecimiento_id">Initial value of the padecimiento_id property.</param> /// <param name="foto">Initial value of the foto property.</param> /// <param name="publicado">Initial value of the publicado property.</param> public static producto Createproducto(global::System.Int32 id, global::System.String nombre, global::System.String descripcion, global::System.Int32 padecimiento_id, global::System.Byte[] foto, global::System.Int32 publicado) { producto producto = new producto(); producto.id = id; producto.nombre = nombre; producto.descripcion = descripcion; producto.padecimiento_id = padecimiento_id; producto.foto = foto; producto.publicado = publicado; return producto; }