예제 #1
0
 /**
  * @param cpf
  * @return
  * @throws Exception
  * @see br.com.qualiti.delivery.negocio.CadastroClientes#procurar(java.lang.String)
  */
 public Cliente procurarCliente(String cpf) throws Exception {
   return cadastroClientes.procurar(cpf);
 }
예제 #2
0
 public Pedido procurarPedido(Serializable chave) throws Exception {
   return cadastroPedido.procurar(chave);
 }
예제 #3
0
 public Produto procurarProduto(Serializable codigo) throws Exception {
   return cadastroProduto.procurar(codigo);
 }
예제 #4
0
 public Entregador procurarEntregador(Serializable chave) throws Exception {
   return cadastroEntregador.procurar(chave);
 }
예제 #5
0
 public FormaPagamento procurar(Serializable chave) throws Exception {
   return cadastroFormaPagamento.procurar(chave);
 }