public CadastrarFuncionarioView()
        {
            InitializeComponent();
            AdmCadastrarFuncionarioController.PreencheCBFuncao(this);
            AdmCadastrarFuncionarioController.PreencheCBSetor(this);
            AdmCadastrarFuncionarioController.InicializaCompontente(this);

            tfConfirmaSenha.Enabled = false;
            btnCadastrar.Enabled    = false;
        }
        private void btnCadastrar_Click(object sender, EventArgs e)
        {
            AdmCadastrarFuncionarioController f = new AdmCadastrarFuncionarioController();

            f.CadastrarFuncionario(this);
        }