/**
  * @param IEntity $entity
  * @return void
  */
 public function delete(IEntity $entity)
 {
     $entity->clearLocations();
     $entity->clearCoursePreRequisites();
     $entity->clearRelatedProjects();
     parent::delete($entity);
 }
 public function delete(IEntity $entity)
 {
     parent::delete($entity);
 }
Ejemplo n.º 3
0
 public function delete(IEntity $entity)
 {
     $entity->clearLocations();
     parent::delete($entity);
 }
 /**
  * @param IEntity $entity
  * @return void
  */
 public function delete(IEntity $entity)
 {
     $entity->clearVideos();
     $entity->clearResources();
     parent::delete($entity);
 }