示例#1
0
 public async Task <StudentGoal> UpdateStudentGoal(StudentGoal studentGoal)
 {
     return(await _studentRepository.UpdateStudentGoal(studentGoal));
 }
示例#2
0
        public async Task <IHttpActionResult> UpdateStudentGoalIntervention(StudentGoalIntervention entity)
        {
            StudentGoal result = await _studentGoalService.UpdateStudentGoalIntervention(entity);

            return(Ok(result));
        }
示例#3
0
 public async Task <StudentGoal> AddStudentGoal(StudentGoal studentGoal)
 {
     return(await _studentRepository.AddStudentGoal(studentGoal));
 }
示例#4
0
        public async Task <IHttpActionResult> AddStudentGoal(StudentGoal entity)
        {
            StudentGoal result = await _studentGoalService.AddStudentGoal(entity);

            return(Ok(result));
        }