super(dao);
}
@Override
public void validate(Produtos entity) throws ServiceBusinessException {
Produtos entityToValidate = new Produtos();
entityToValidate.setDescricao(entity.getDescricao());
entityToValidate.setId(entity.getId());
entityToValidate.setAtivo(true);
ServiceUniqueEntityValidator<Produtos, ProdutosDao> uniqueEntityValidator = ServiceUniqueEntityValidator.create(dao);
uniqueEntityValidator.validate(entityToValidate, String.format("O produto com a descrição informada (%s) já está cadastrado", entityToValidate.getDescricao()));
}