public async Task <IActionResult> OnGet()
        {
            var user = await _userManager.GetUserAsync(User);

            SubscribeCount = await _userSubscriptionManager.GetCountByUserAsync(user);

            AggregatorCount = await _aggregatorManager.GetCountByAuthorAsync(user);

            AssetCount = await _assetManager.GetCountByAuthorAsync(user);

            return(Page());
        }
 /// <summary>
 ///     returns Asset Count of given user
 /// </summary>
 /// <param name="user"></param>
 /// <returns></returns>
 public async Task <Int32> GetAssetCountByUserAsync(SporeServerUser user)
 {
     return(await _assetManager.GetCountByAuthorAsync(user));
 }