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