コード例 #1
0
 public ResponseMessageWrap <int> Update([FromBody] CoursePlanLecturer coursePlanLecturer)
 {
     return(new ResponseMessageWrap <int>
     {
         Body = CoursePlanLecturerService.Update(coursePlanLecturer)
     });
 }
コード例 #2
0
 public int Update(CoursePlanLecturer coursePlanLecturer)
 {
     return(CoursePlanLecturerRepository.Update(coursePlanLecturer));
 }
コード例 #3
0
 public int Insert(CoursePlanLecturer coursePlanLecturer)
 {
     return(CoursePlanLecturerRepository.Insert(coursePlanLecturer));
 }