private void CarregarFormaDePagamento()
        {
            if (string.IsNullOrEmpty(tbPesquisa.Text))
            {
                lFormaDePagamento = FormaDePagamentoModel.CarregarTodos();
            }
            else
            {
                lFormaDePagamento = FormaDePagamentoModel.Pesquisar(tbPesquisa.Text);
            }

            lvwFormaDePagamento.ItemsSource = lFormaDePagamento;
            tbPesquisa.Focus();
        }