public List <object[]> reportesCursos(String valor, int numPagina, String order, int funcion)
        {
            String thead = "<tr>" +
                           "<th>Nombre</th>" +
                           "<th>Descripcion</th>" +
                           "<th>Creditos</th>" +
                           "<th>Horas</th>" +
                           "<th>Costo</th>" +
                           "<th>Estado</th>" +
                           "<th>Categoria</th>" +
                           "</tr> ";

            object[] dataObj  = { thead };
            var      reportes = cursoModels.filtrarCurso(numPagina, valor, order, funcion);

            reportes.Add(dataObj);
            return(reportes);
        }
Ejemplo n.º 2
0
 public List <object[]> filtrarCurso(int numPagina, string valor, string order, int funcion)
 {
     return(cursoModels.filtrarCurso(numPagina, valor, order, funcion));
 }