Example #1
0
 /**
  * Update status process/event association
  *
  * @param   Event $event
  * @param   string $status
  * @return  $this
  */
 public function updateEventStatus(Event $event, $status)
 {
     $this->_getResource()->updateEventStatus($this->getId(), $event->getId(), $status);
     return $this;
 }