protected void MostrarNotas() { var res = not.GetInfo().ToArray(); Debug.WriteLine(res.Length); for (int i = 0; i < res.Length; i++) { var table = string.Format("<tr> <td>{0}</td> <td>{1}</td> <td>{2}</td> <td>{3}</td> <td>{4}</td> <td>{5}</td> <td>{6}</td><td></td> </tr>", res[i].ID_NOTAS, herra.CapitalizeByWord(herra.Decrypt(res[i].NOMBRE)) + " " + herra.CapitalizeByWord(herra.Decrypt(res[i].APELLIDOS)), res[i].ID_SECCION, res[i].PRIMER_PERIODO, res[i].SEGUNDO_PERIODO, res[i].TERCER_PERIODO, res[i].PROMEDIO); Response.Write(table); } }
protected void MostrarEstudiantes() { var res = est.GetInfo(); for (int i = 0; i < est.GetCant(); i++) { var table = string.Format("<tr> <td>{0}</td> <td>{1}</td> <td>{2}</td> <td>{3}</td> <td></td> </tr>", herra.Decrypt(res[i].ID_ESTUDIANTE), herra.CapitalizeByWord(herra.Decrypt(res[i].NOMBRE) + " " + herra.Decrypt(res[i].APELLIDOS)), res[i].ID_SECCION, herra.Decrypt(res[i].TELEFONO)); Response.Write(table); } }
protected void MostrarUsuarios() { var res = _usu.ObtenerInfoGeneral(); for (int i = 0; i < _usu.TotalUsuarios(); i++) { Response.Write("<tr>" + "<td class='text-center'>" + _herra.Decrypt(res[i].USUARIO) + "</td>" + "<td class='text-center'>" + _herra.CapitalizeByWord(_herra.Decrypt(res[i].NOMBRE) + " " + _herra.Decrypt(res[i].APELLIDOS)) + "</td>" + "<td class='text-center'>" + _herra.CapitalizeByWord(_usu.ObtenerRol(res[i].ID_ROL)) + "</td>" + "<td class='text-center'>" + _herra.Decrypt(res[i].EMAIL).ToLower() + "</td>" + "<td class='text-center'>" + _herra.Decrypt(res[i].TELEFONO) + "</td>" + "<td></td>" + "</tr>"); } }
protected void MostrarProfesores() { var res = _profe.GetInfo(); for (int i = 0; i < _profe.GetCant(); i++) { var table = string.Format("<tr> <td>{0}</td> <td>{1}</td> <td>{2}</td> <td>{3}</td> <td></td> </tr>", _herra.Decrypt(res[i].ID_PROFESOR), _herra.CapitalizeByWord(_herra.Decrypt(res[i].NOMBRE) + " " + _herra.Decrypt(res[i].APELLIDOS)), _herra.Decrypt(res[i].EMAIL).ToLower(), _herra.Decrypt(res[i].TELEFONO)); Response.Write(table); } }
// GetId() public string GetId(string NOMBRE) { TB_Profesores[] res_ = { }; var res = string.Empty; try { res_ = _db.Select <TB_Profesores>().ToArray(); foreach (var item in res_) { if ((_herra.Decrypt(item.NOMBRE) + " " + _herra.Decrypt(item.APELLIDOS)) == NOMBRE.ToUpper()) { res = item.ID_PROFESOR; } } } catch (Exception ex) { Debug.WriteLine("\nError \nUbicación: Capa DAL -> MProfesores -> GetId(). \nDescripción: " + ex.Message); } return(res); }
protected void Page_Load(object sender, EventArgs e) { _Usuario = Context.User.Identity.Name; Debug.WriteLine(_Usuario); var res = _usu.ObtenerInfo(_Usuario); username.Text = _herra.CapitalizeByWord(_herra.Decrypt(res[0].NOMBRE) + " " + _herra.Decrypt(res[0].APELLIDOS)); email.Text = _herra.Decrypt(res[0].EMAIL).ToLower(); user.Text = _herra.Capitalize(_herra.Decrypt(res[0].USUARIO)); tel.Text = _herra.Decrypt(res[0].TELEFONO); role.Text = _herra.Capitalize(_usu.ObtenerRol(res[0].ID_ROL)); E_Role.Text = role.Text; E_IdCard.Text = _herra.Decrypt(res[0].CEDULA); }
protected void Page_Load(object sender, EventArgs e) { ddlMateria.DataSource = mat.ListarMaterias().Select(x => herra.CapitalizeByWord(x.NOMBRE)); ddlMateria.DataBind(); ddlNivel.DataSource = niv.ListarNiveles().Select(x => herra.CapitalizeByWord(x.NOMBRE)); ddlNivel.DataBind(); ddlProfesor.DataSource = pro.ListarProfesores().Select(x => herra.CapitalizeByWord(herra.Decrypt(x.NOMBRE) + " " + herra.CapitalizeByWord(herra.Decrypt(x.APELLIDOS)))); ddlProfesor.DataBind(); }