public ResponseMessageWrap <int> Insert([FromBody] CoursePlanClass coursePlanClass)
 {
     return(new ResponseMessageWrap <int>
     {
         Body = CoursePlanClassService.Insert(coursePlanClass)
     });
 }