public async Task <BaseFilterModel> GetFilterModelForCurrentUser(int requiredTaskCount)
        {
            var taskInformationAggregate = await _taskInformationAggregateService.GetStoredTaskInformationAggregate();

            var userInformation = await _userInformationService.GetUserInformationForCurrentUser();

            if (userInformation == null)
            {
                return(taskInformationAggregate.GetDefaultFilterModel());
            }

            return(taskInformationAggregate.GetFilterModelForUser(requiredTaskCount, userInformation));
        }