コード例 #1
0
 /**
  * @param BOL_EmailVerified $object
  */
 public function saveOrUpdate(BOL_EmailVerified $object)
 {
     $this->emailVerifiedDao->save($object);
 }
コード例 #2
0
 /**
  * Saves/updates <BOL_Question> objects.
  *
  * @param BOL_Question $field
  */
 public function saveOrUpdateQuestion(BOL_Question $question, $label = null, $description = null)
 {
     $this->questionDao->save($question);
     $this->updateQuestionsEditStamp();
 }
コード例 #3
0
ファイル: preference_service.php プロジェクト: vazahat/dudex
 public function savePreference(BOL_Preference $preferenceDto)
 {
     $this->preferenceDao->save($preferenceDto);
 }