public async System.Threading.Tasks.Task LoadProjects()
        {
            try
            {
                Projects = await adminService.ReadAdminProjectsForUserAsync(globalModel.CurrentUser);

                ProjectUsers.Clear();
                AllCompanyUsers.Clear();
            }
            catch (TimeoutException timeoutEx)
            {
                _eventAggregator.GetEvent <TimeoutErrorEvent>().Publish(timeoutEx);
            }
        }