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); }
public List <object[]> filtrarCurso(int numPagina, string valor, string order, int funcion) { return(cursoModels.filtrarCurso(numPagina, valor, order, funcion)); }