public ResponseMessageWrap <int> Update([FromBody] CoursePlanStudent coursePlanStudent)
 {
     return(new ResponseMessageWrap <int>
     {
         Body = CoursePlanStudentService.Update(coursePlanStudent)
     });
 }
 public int Update(CoursePlanStudent coursePlanStudent)
 {
     return(CoursePlanStudentRepository.Update(coursePlanStudent));
 }
 public int Insert(CoursePlanStudent coursePlanStudent)
 {
     return(CoursePlanStudentRepository.Insert(coursePlanStudent));
 }