public Collection<Cliente> filtrarClientes(Cliente cliente) {
   return cadastroClientes.filtrar(cliente);
 }
 public Collection<Pedido> filtrar(Pedido t) {
   return cadastroPedido.filtrar(t);
 }
 public Collection<Produto> filtrar(Produto t) {
   return cadastroProduto.filtrar(t);
 }
 public Collection<Entregador> filtrar(Entregador t) {
   return cadastroEntregador.filtrar(t);
 }
 public Collection<FormaPagamento> filtrar(FormaPagamento t) {
   return cadastroFormaPagamento.filtrar(t);
 }