Exemple #1
0
        private void btLogout_Click(object sender, EventArgs e)
        {
            FrenteDeCaixa         frente       = new FrenteDeCaixa();
            AutenticacaoValidacao autenticacao = new AutenticacaoValidacao(1, frente, this);

            autenticacao.ShowDialog();
        }
Exemple #2
0
        private void btLogout_Click(object sender, EventArgs e)
        {
            Admin admin = new Admin(true);
            AutenticacaoValidacao autenticacao = new AutenticacaoValidacao(1, this, admin);

            autenticacao.ShowDialog();
        }
Exemple #3
0
        private void btSangria_Click(object sender, EventArgs e)
        {
            AutenticacaoValidacao autenticacao = new AutenticacaoValidacao(2);

            autenticacao.ShowDialog();
            lbStatus.Text = "Caixa em Sangria.";
        }
Exemple #4
0
        private void btSangria_Click(object sender, EventArgs e)
        {
            Admin admin = new Admin(true);
            AutenticacaoValidacao autenticacao = new AutenticacaoValidacao(2, this, admin);

            autenticacao.ShowDialog();
            lbStatus.Text = "Caixa em Sangria.";
        }
Exemple #5
0
 private void btFechamento_Click(object sender, EventArgs e)
 {
     if (MessageBox.Show("Deseja fazer o fechamento do Caixa?", "Confirmar", MessageBoxButtons.YesNo) == DialogResult.Yes)
     {
         AutenticacaoValidacao autenticacao = new AutenticacaoValidacao(3);
         autenticacao.ShowDialog();
         this.Dispose();
     }
 }
Exemple #6
0
 private void btLogout_Click(object sender, EventArgs e)
 {
     AutenticacaoValidacao autenticacao = new AutenticacaoValidacao(0);
 }