Esempio n. 1
0
 public function findByCommand(Command $command)
 {
     return $this->findBy(array('serviceNotificationCommandId' => $command->getId()));
 }
Esempio n. 2
0
 public function findByCommand(Command $command)
 {
     return $this->findBy(array('commandId' => $command->getId()), array('sort' => array('name' => 1)));
 }
Esempio n. 3
0
 public function export(Command $entity)
 {
     return array('id' => (string) $entity->getId(), 'title' => $entity->getTitle());
 }