public async Task <ActionResult <ChangeStudentStatusResponse> > AdminChangeStudentStatus(int studentId,
                                                                                                 string status)
        {
            if (!UserStatus.IsRole(status))
            {
                throw new HttpStatusCodeException(HttpStatusCode.NotFound, "Status is not found");
            }

            return(await _studentService.ChangeStudentStatus(studentId, status));
        }