public List<Pagamento> SelecionarPagamentos(Pagamento pagamento)
 {
     try
     {
         var selecionar = new ListarNegocio<Pagamento>(new PagamentosDataBase());
         return selecionar.ListarEntidade(pagamento);
     }
     catch (Exception ex)
     {
         throw new Exception(string.Concat("SelecionarPagamentos: ", ex.Message));
     }
 }
 public int InserirPagamento(Pagamento pagamento)
 {
     try
     {
         var inserir = new InserirNegocio<Pagamento>(new PagamentosDataBase());
         return inserir.InserirEntidade(pagamento);
     }
     catch (Exception ex)
     {
         throw new Exception(string.Concat("InserirPagamento: ", ex.Message));
     }
 }