private void btnEntrar_Click(object sender, EventArgs e) { string tipoUsuario; tipoUsuario = new LoginRepositorio().ExiteUsuario(textUsuario.Text.ToUpper(), textContraseña.Text); if (tipoUsuario.Equals("ADMINISTRADOR")) { VistaGeneral sig = new VistaGeneral(); sig.Show(); this.Close(); } else if (tipoUsuario.Equals("MECANICO")) { VistaGeneralMecanico sig = new VistaGeneralMecanico(); sig.Show(); } else if (tipoUsuario.Equals("VENDEDOR")) { VistaGeneralVendedor sig = new VistaGeneralVendedor(); sig.Show(); } else { MessageBox.Show("Usuario no existe..."); } }
private void button1_Click(object sender, EventArgs e) { VistaGeneral sig = new VistaGeneral(); sig.Show(); this.Hide(); }