private void btnRestaurar_Click(object sender, EventArgs e)
        {
            #region Declaração

              configuracoesControler configControl = null;
              #endregion

              #region Implementação

              configControl = new configuracoesControler();

              config.Path = config.Path + ltbArquivos.Text;

              if (configControl.Restore(config))
              {
            MessageBox.Show("Restaurado com Sucesso", "Sucesso");
              }
              else
            MessageBox.Show("O banco não pode ser restaurado!", "Erro");
              #endregion
        }