示例#1
0
 public async Task <bool> UpdateStudentGoalStep(StudentGoalStep studentGoalStep)
 {
     return(await _studentRepository.UpdateStudentGoalStep(studentGoalStep));
 }
示例#2
0
        public async Task <IHttpActionResult> UpdateStudentGoalStep(StudentGoalStep step)
        {
            bool result = await _studentGoalService.UpdateStudentGoalStep(step);

            return(Ok(result));
        }