Esempio n. 1
0
 public Collection<Cliente> filtrarClientes(Cliente cliente) {
   return cadastroClientes.filtrar(cliente);
 }
Esempio n. 2
0
 public Collection<Pedido> filtrar(Pedido t) {
   return cadastroPedido.filtrar(t);
 }
Esempio n. 3
0
 public Collection<Produto> filtrar(Produto t) {
   return cadastroProduto.filtrar(t);
 }
Esempio n. 4
0
 public Collection<Entregador> filtrar(Entregador t) {
   return cadastroEntregador.filtrar(t);
 }
Esempio n. 5
0
 public Collection<FormaPagamento> filtrar(FormaPagamento t) {
   return cadastroFormaPagamento.filtrar(t);
 }