コード例 #1
0
 public void CreateAnswer(AnswerEntity answer)
 {
     answerRepository.Create(answer.ToDalAnswer());
     uow.Commit();
 }
コード例 #2
0
 public bool ExistAnswer(QuestionEntity question, AnswerEntity answer)
 {
     return(answerRepository.ExistAnswer(question.ToDalQuestion(), answer.ToDalAnswer()));
 }