/**
  * @param bool $isInstanceAlreadyPartOfList [optional]
  * @return BasicEntity[]
  */
 public function getList($isInstanceAlreadyPartOfList = false)
 {
     if (!$isInstanceAlreadyPartOfList) {
         $entityInstances = EntityActionHelper::getFullList($this->className, $this->tableName);
         return $entityInstances;
     } else {
         return array();
     }
 }
Example #2
0
 /**
  * @return bool
  */
 public function delete()
 {
     $result = $this->actionHelper->delete();
     return $result;
 }