private async Task updateBindings()
        {
            UserDto currentUser = (UserDto)App.LogicContext.SessionStorage.Get("CurrentUser");

            CounselRequestDto[] counselRequests = null;

            if (currentUser.UserTypeId == (int)UserType.Teacher)
            {
                counselRequests = await counselsService.GetCounselRequestsForTeacher(currentUser, showAcceptedRequests);

                confirmCounselListViewModel.CounselRequests = counselRequests.Where(x => x.SubjectId == subject.SubjectId).ToArray();
            }
            else
            {
                counselRequests = await counselsService.GetCounselRequestsForStudent(currentUser);

                confirmCounselListViewModel.CounselRequests = counselRequests;
            }
        }