public async Task <IEnumerable <Project> > GetAllProjectsWithClaimCount() => await AllProjects.Include(p => p.Claims).ToListAsync();
public async Task <IEnumerable <Project> > GetArchivedProjectsWithClaimCount() => await AllProjects.Include(p => p.Claims).Where(p => !p.Active).ToListAsync();