Exemplo n.º 1
0
 public DTO.Cliente localizar(DTO.Cliente cliente)
 {
     DAL.Cliente c = new DAL.Cliente();
     if (cliente.Cpf != "")
     {
         return(c.localizar(cliente));
     }
     return(new DTO.Cliente());
 }