<?php
abstract class Service extends Entity {
protected static
$type,
$subType,
$rootType,
$parentType = 'Model';
public function getState ( EntityObject $dataObject ) {
return $this->getParent()->getState($dataObject);
}
?>