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

            return(Ok(result));
        }