public function saveOrUpdateAccountType(BOL_QuestionAccountType $value)
 {
     $this->accountDao->save($value);
     $this->updateQuestionsEditStamp();
 }
예제 #2
0
 public function saveOrUpdateAccountType(BOL_QuestionAccountType $value)
 {
     $this->accountDao->save($value);
     $this->updateQuestionsEditStamp();
     $event = new OW_Event(self::EVENT_ON_ACCOUNT_TYPE_ADD, array('id' => $value->id));
     OW::getEventManager()->trigger($event);
 }