public bool Deletar(string cpf)
 {
     try
     {
         return(_clienteDAL.Deletar(cpf));
     }
     catch (ConcorrenciaBancoException)
     {
         throw new IntegridadeException("Cliente não pode ser deletado, pois está ligado a outros serviços.");
     }
 }