コード例 #1
0
 public ResponseMessageWrap <int> Update([FromBody] PaperRefQuestion paperRefQuestion)
 {
     return(new ResponseMessageWrap <int>
     {
         Body = PaperRefQuestionService.Update(paperRefQuestion)
     });
 }
コード例 #2
0
 public int Update(PaperRefQuestion paperRefQuestion)
 {
     return(PaperRefQuestionRepository.Update(paperRefQuestion));
 }
コード例 #3
0
 public int Insert(PaperRefQuestion paperRefQuestion)
 {
     return(PaperRefQuestionRepository.Insert(paperRefQuestion));
 }