Esempio n. 1
0
        private void btnProximo_Click(object sender, EventArgs e)
        {
            CadChavesBLL BLL = new CadChavesBLL();
            Chave        c   = new Chave();

            c = TelaToEntity();

            c = BLL.BuscaProx(c);

            if (c != null)
            {
                LimpaTela();
                EntityToTela(c);
            }
            else
            {
                MessageBox.Show("Erro ao Buscar, Reinicie o Programa, se Persistir entre em contato com o Suporte");
            }
            MensagemErro();
        }