Exemplo n.º 1
0
 /// <summary>
 /// Obteners the valores pantalla.
 /// </summary>
 /// <returns></returns>
 private Evaluacion ObtenerValoresDePantalla()
 {
     Evaluacion entidad = new Evaluacion();
     entidad = propEvento;
     if (!esNuevo)
     {
         entidad.idAgendaActividad = propAgenda.idAgendaActividad;
         entidad.idEventoAgenda = propEvento.idEventoAgenda;
     }
     entidad.asignatura.idAsignatura = Convert.ToInt32(ddlAsignaturaEdit.SelectedValue);
     entidad.descripcion = txtDescripcionEdit.Text;
     entidad.fechaEvento = Convert.ToDateTime(new DateTime(propAgenda.cursoCicloLectivo.cicloLectivo.fechaInicio.Year, Convert.ToInt32(ddlMeses.SelectedValue), Convert.ToInt32(ddlDia.SelectedValue)));
     entidad.usuario.username = ObjSessionDataUI.ObjDTUsuario.Nombre;
     entidad.activo = chkActivoEdit.Checked;
     entidad.fechaAlta = DateTime.Now;
     return entidad;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Buscars the filtrando.
 /// </summary>
 private void BuscarFiltrando()
 {
     calfechas.ValidarRangoDesdeHasta(false);
     Evaluacion entidad = new Evaluacion();
     entidad.asignatura.idAsignatura = Convert.ToInt32(ddlAsignatura.SelectedValue);
     entidad.fechaEventoDesde = Convert.ToDateTime(calfechas.ValorFechaDesde);
     entidad.fechaEventoHasta = Convert.ToDateTime(calfechas.ValorFechaHasta);
     entidad.activo = chkActivo.Checked;
     propFiltroEvento = entidad;
     BuscarAgenda(entidad);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Cargars the lista.
 /// </summary>
 /// <param name="entidad">The entidad.</param>
 private void CargarLista(Evaluacion entidad)
 {
     objBLAgenda = new BLAgendaActividades();
     entidad.idAgendaActividad = propAgenda.idAgendaActividad;
     listaEventos = objBLAgenda.GetEvaluacionesAgenda(entidad);
 }
Exemplo n.º 4
0
        /// <summary>
        /// Buscars the entidads.
        /// </summary>
        /// <param name="entidad">The entidad.</param>
        private void BuscarAgenda(Evaluacion entidad)
        {
            CargarLista(entidad);

            CargarGrilla();
        }