/// <summary> /// Deprecated Method for adding a new object to the experto_proyecto EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToexperto_proyecto(experto_proyecto experto_proyecto) { base.AddObject("experto_proyecto", experto_proyecto); }
public void asignarProyecto(int id_proyecto, int id_experto) { gisiaCont = new gisiabaseEntities2(); experto_proyecto asignacion = new experto_proyecto(); asignacion.id_proyecto = id_proyecto; asignacion.id_experto = id_experto; asignacion.valoracion_consistente = false; asignacion.ILPonderacion = 0; gisiaCont.AddToexperto_proyecto(asignacion); gisiaCont.SaveChanges(); gisiaCont.Dispose(); }
/// <summary> /// Create a new experto_proyecto object. /// </summary> /// <param name="id_asignacion">Initial value of the id_asignacion property.</param> /// <param name="id_proyecto">Initial value of the id_proyecto property.</param> /// <param name="id_experto">Initial value of the id_experto property.</param> /// <param name="ponderacion">Initial value of the ponderacion property.</param> /// <param name="iLPonderacion">Initial value of the ILPonderacion property.</param> /// <param name="valoracion_consistente">Initial value of the valoracion_consistente property.</param> public static experto_proyecto Createexperto_proyecto(global::System.Int32 id_asignacion, global::System.Int32 id_proyecto, global::System.Int32 id_experto, global::System.Double ponderacion, global::System.Double iLPonderacion, global::System.Boolean valoracion_consistente) { experto_proyecto experto_proyecto = new experto_proyecto(); experto_proyecto.id_asignacion = id_asignacion; experto_proyecto.id_proyecto = id_proyecto; experto_proyecto.id_experto = id_experto; experto_proyecto.ponderacion = ponderacion; experto_proyecto.ILPonderacion = iLPonderacion; experto_proyecto.valoracion_consistente = valoracion_consistente; return experto_proyecto; }