예제 #1
0
        bool VerificarSiAlumnoEstaMatriculadoEnCursoYPeriodoSeleccionado(Clases.Matricula MatriculaExistente)
        {
            #region :: Variables Utilizadas ::

            DataTable DtMatriculaExistente = new DataTable();
            bool Resultado;

            #endregion

            DtMatriculaExistente = MatriculaExistente.GetMatriculaPorEstudianteCursoPeriodo(MatriculaExistente);

            if (DtMatriculaExistente.Rows.Count > 0) { Resultado = true; }
            else { Resultado = false; }

            return Resultado;
        }