/**
  * Schedule recalculation of completenesses for all product
  * of a family
  *
  * @param FamilyInterface $family
  */
 public function scheduleForFamily(FamilyInterface $family)
 {
     if ($family->getId()) {
         $this->generator->scheduleForFamily($family);
     }
 }