public ResponseMessageWrap <int> Update([FromBody] CoursePlanCourse coursePlanCourse)
 {
     return(new ResponseMessageWrap <int>
     {
         Body = CoursePlanCourseService.Update(coursePlanCourse)
     });
 }
예제 #2
0
 public int Update(CoursePlanCourse coursePlanCourse)
 {
     return(CoursePlanCourseRepository.Update(coursePlanCourse));
 }
예제 #3
0
 public int Insert(CoursePlanCourse coursePlanCourse)
 {
     return(CoursePlanCourseRepository.Insert(coursePlanCourse));
 }