private void button2_Click(object sender, EventArgs e) { MenuPpal mp = new MenuPpal(); this.Close(); mp.Show(); }
private void jalo_Click(object sender, EventArgs e) { //MenuPpal mp = new MenuPpal(); //mp.Show(); var controladorInicio = new ControladorInicio(); controladorInicio.Login(txtUsuario.Text, txtContraseña.Text); if (controladorInicio.mensaje != "") { MessageBox.Show("Error: " + controladorInicio.mensaje); } else { MessageBox.Show("Autentificacion exitosa"); int tipo; tipo = controladorInicio.ObtenerTipo(txtUsuario.Text); MenuPpal mp = new MenuPpal(tipo); mp.Show(); this.Hide(); } }
private void btnAgregar_Click(object sender, EventArgs e) { var controladorNuevoCliente = new ControladorNuevoCliente(); controladorNuevoCliente.AgregarNuevoCliente(txtNombre.Text, txtGenero.Text, txtEstadoCivil.Text, dtpFechaNac.Value, txtEscolaridad.Text, txtOcupacion.Text, mtxtTelefono.Text, txtEmail.Text, rtxtMotivos.Text); if (controladorNuevoCliente.error != "") { MessageBox.Show(controladorNuevoCliente.error); } else { txtNombre.Text = ""; txtGenero.Text = ""; txtEstadoCivil.Text = ""; txtEscolaridad.Text = ""; txtOcupacion.Text = ""; mtxtTelefono.Text = ""; txtEmail.Text = ""; rtxtMotivos.Text = ""; MessageBox.Show("Cliente agregado"); MenuPpal menu = new MenuPpal(1); menu.FillClients(); } }