private void btnLogin_Click(object sender, EventArgs e) { try { string username = txtLogin.Text; string password = txtSenha.Text; FuncionarioBusiness business = new FuncionarioBusiness(); FuncionarioDTO funcionario = business.Logar(username, password); if (funcionario != null) { UserSession.UsuarioLogado = funcionario; frmFolhaPagamento tela = new frmFolhaPagamento(); tela.Show(); this.Hide(); } } catch (ArgumentException ex) { MessageBox.Show(ex.Message, "Best Moments", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void btnLogar_Click(object sender, EventArgs e) { try { FuncionarioBusiness business = new FuncionarioBusiness(); FuncionarioDTO funcionario = business.Logar(txtUsuarioLogin.Text, txtSenha.Text); if (funcionario != null) { UserSession.UsuarioLogado = funcionario; Form1 menu = new Form1(); menu.Show(); this.Hide(); } else { MessageBox.Show("Credenciais inválidas.", "Café Patronal", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } } catch (Exception ex) { MessageBox.Show("Ocorreu um erro" + ex.Message); } }
private void btnLogin_Click(object sender, EventArgs e) { try { string username = txtLogin.Text; string password = txtSenha.Text; FuncionarioBusiness business = new FuncionarioBusiness(); FuncionarioDTO funcionario = business.Logar(username, password); if (funcionario != null) { UserSession.UsuarioLogado = funcionario; frmMenuPrincipal tela = new frmMenuPrincipal(); tela.Show(); this.Hide(); } } catch { MessageBox.Show("Ocorreu um erro"); } }