private void btnAdd_Click(object sender, EventArgs e)
        {
            if (txtNome.Text == "")
            {
                mensagemInfoExibir("Insira o nome de Cliente !", titulo);
                txtNome.Focus();
                return;
            }

            if (txtTelefone.Text == "")
            {
                mensagemInfoExibir("Insira o telefone de Cliente !", titulo);
                txtNome.Focus();
                return;
            }

            using (IConnection Conexion = new Connection())
            {
                IDAO<Cliente> daoCli = new DAOCliente(Conexion);
                Cliente cli = new Cliente();//Objeto tipo Modulos(tabela)
                string codnew = daoCli.CurremRegVal();
                /*
                if (int.Parse(codnew)+ 1 < 10)
                    cli.Id = 0 +int.Parse(codnew) + 1;
                else
                    cli.Id = int.Parse(codnew) + 1;
                */ 
                cli.Nome = txtNome.Text;
                cli.Telefone = txtTelefone.Text;
                // gravo los datos como registro en la tabla modulos
                daoCli.Insert(cli);
                DefaultObjetos();
            }
            LlenarGrid();
        }