public async Task <StudentAllAbout> UpdateStudentAllAbout(StudentAllAbout studentAllAbout)
 {
     return(await _studentRepository.UpdateStudentAllAbout(studentAllAbout));
 }
示例#2
0
        public async Task <IHttpActionResult> UpdateStudentAllAbout(StudentAllAbout entity)
        {
            StudentAllAbout result = await _studentAllAboutService.UpdateStudentAllAbout(entity);

            return(Ok(result));
        }