public ResponseMessageWrap <int> Update([FromBody] PaperRefQuestion paperRefQuestion)
 {
     return(new ResponseMessageWrap <int>
     {
         Body = PaperRefQuestionService.Update(paperRefQuestion)
     });
 }
Esempio n. 2
0
 public int Update(PaperRefQuestion paperRefQuestion)
 {
     return(PaperRefQuestionRepository.Update(paperRefQuestion));
 }
Esempio n. 3
0
 public int Insert(PaperRefQuestion paperRefQuestion)
 {
     return(PaperRefQuestionRepository.Insert(paperRefQuestion));
 }