Exemplo n.º 1
0
 public IEnumerable <CellsGroup> YouthOf(Tribe tribe, int generation)
 {
     return(content.Where(x => x.tribe == tribe && x.generation == generation));
 }
Exemplo n.º 2
0
 public bool ContainYouthOf(Tribe tribe, int generation)
 {
     return(YouthOf(tribe, generation).Any());
 }