Example #1
0
 public async Task <IActionResult> ArchiveStudentAsync(int studentId)
 {
     return(Ok(await _studentManagementRepository.ArchiveStudentAsync(studentId, await GetUserCurrentSelectedInstituteIdAsync())));
 }