private async Task <bool> RefreshAsync()
 {
     Items = null;
     OnNew();
     try
     {
         Items = await RankService.GetStudentRankListAsync();
     }
     catch (Exception e)
     {
         return(false);
     }
     return(true);
 }