コード例 #1
0
 public ResponseMessageWrap <int> DeleteById(long id)
 {
     return(new ResponseMessageWrap <int>
     {
         Body = CoursePlanStudentService.DeleteById(id)
     });
 }
コード例 #2
0
 public ResponseMessageWrap <int> Update([FromBody] CoursePlanStudent coursePlanStudent)
 {
     return(new ResponseMessageWrap <int>
     {
         Body = CoursePlanStudentService.Update(coursePlanStudent)
     });
 }
コード例 #3
0
 public CoursePlanStudentController(CoursePlanStudentService coursePlanStudentService, ICoursePlanStudentRepository coursePlanStudentRepository)
 {
     CoursePlanStudentService    = coursePlanStudentService;
     CoursePlanStudentRepository = coursePlanStudentRepository;
 }