public void ValidarAlumnoOKExisteCodAlumnoNullDNINullNombre_True() { string CodAlumno = "A0001"; string DNI = ""; string Nombre = ""; string Direccion = ""; string Numero = ""; string[] a = new string[] { CodAlumno, DNI, Nombre, Direccion, Numero }; cAlumno cAutenticacion = new cAlumno(); bool estadoResultante = false; bool result; try { cAutenticacion.Insertar(a); result = false; } catch (Exception e) { result = true; } Assert.AreEqual(estadoResultante, result); }
public void ValidarAlumnoOkCodAlumnoOkDNIOkNombre_True() { string CodAlumno = "A0004"; string DNI = "72712946"; string Nombre = "Fernando Calla"; string Direccion = ""; string Numero = ""; string[] a = new string[] { CodAlumno, DNI, Nombre, Direccion, Numero }; cAlumno cAutenticacion = new cAlumno(); bool estadoResultante = true; bool result; try { cAutenticacion.Insertar(a); result = true; } catch (Exception e) { result = false; } Assert.AreEqual(estadoResultante, result); }
private void CargarAlumnos() { cAlumno alumno = new cAlumno(); DataTable trdo = alumno.GetAlumnos(); Grilla.DataSource = trdo; Grilla.DataBind(); }
private void CargarAlumno(Int32 CodAlumno) { cAlumno alumno = new cAlumno(); DataTable tb = alumno.GetAlumnoxCodAlumno(CodAlumno); if (tb.Rows.Count > 0) { txtCodAlumno.Text = CodAlumno.ToString(); txtApellido.Text = tb.Rows[0]["Apellido"].ToString(); txtNombre.Text = tb.Rows[0]["Nombre"].ToString(); } }
protected void btnGrabar_Click(object sender, EventArgs e) { cFunciones fun = new cFunciones(); if (txtApellido.Text == "") { Mensaje("Debe seleccionar un apellido"); return; } if (txtNombre.Text == "") { Mensaje("Debe ingresar un nombre"); return; } if (txtNroDocumento.Text == "") { Mensaje("Debe ingresar un número de documento"); return; } string Apellido = ""; string Nombre = ""; string NroDoc = ""; string Telefono = ""; Int32 CodAlumno = 0; if (txtCodAlumno.Text != "") { CodAlumno = Convert.ToInt32(txtCodAlumno.Text); } Apellido = txtApellido.Text; Nombre = txtNombre.Text; Telefono = txtTelefono.Text; NroDoc = txtNroDocumento.Text; cAlumno alumno = new cAlumno(); if (txtCodAlumno.Text == "") { alumno.Agregar(Apellido, Nombre, NroDoc, Telefono); } else { alumno.Modificar(CodAlumno, Apellido, Nombre, NroDoc, Telefono); } if (chkRegistrar.Checked == false) { Response.Redirect("FrmListadoAlumnos.aspx"); } else { txtCodAlumno.Text = ""; txtApellido.Text = ""; txtNombre.Text = ""; txtNroDocumento.Text = ""; txtTelefono.Text = ""; Mensaje("Datos grabados correctamente"); } }