}
@Override
public void validate(Despesas entity) throws ServiceBusinessException {
Despesas entityToValidate = new Despesas();
entityToValidate.setAtivo(true);
entityToValidate.setId(entity.getId());
if(entity.getItens() == null || entity.getItens().size() == 0)
throw new ServiceBusinessException("Nenhum item foi adicionado.");
else{