public async Task OnGetAsync()
        {
            var pageIndex = 1;

            if (PageIndex.HasValue && PageIndex > 0)
            {
                pageIndex = PageIndex.Value;
            }
            ApplicationUser = await _userAppService.GetUserListAsync(pageIndex, 10);
        }