public Curso() { aula = 0; idTurno = 0; capacidad = 0; bedel = null; }
public Curso(int aula, int idTurno, int capacidad, Bedel bedel) { this.aula = aula; this.idTurno = idTurno; this.capacidad = capacidad; this.bedel = bedel; }
private void BtnRegistrar_Click(object sender, EventArgs e) { if (Validar()) { Bedel bedel = new Bedel(); bedel._legajo = Convert.ToInt32(txtLegajo.Text); bedel._nombre = txtNombre.Text; bedel._apellido = txtApellido.Text; bedel._direccion = txtDireccion.Text; bedel._idCategoria = Convert.ToInt32(cboCategoria.SelectedValue); bedel._sueldoBasico = Convert.ToDouble(txtSueldo.Text); Curso curso = new Curso(); curso._aula = Convert.ToInt32(txtAula.Text); curso._bedel = bedel; curso._capacidad = Convert.ToInt32(txtCapacidad.Text); curso._idTurno = Convert.ToInt32(cboTurno.SelectedValue); DialogResult dialogo = MessageBox.Show("Seguro desea registrar? " + "\n" + curso.ToStringCurso(), "Atencion", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (dialogo == DialogResult.Yes) { conexion.RegistrarBedel(bedel._legajo, bedel._nombre, bedel._apellido, bedel._direccion, bedel._sueldoBasico, bedel._idCategoria); MessageBox.Show(conexion.RegistrarCurso(curso._aula, curso._idTurno, curso._capacidad, bedel._legajo)); txtTurnoMañana.Text = conexion.CantPorTurno(0).ToString(); } } }