Exemplo n.º 1
0
 public static List <HeadType> AllHeadsForCrownAndGender(CrownType crown, Gender gender)
 {
     return(AllHeads.Where(x => x.Gender == gender && x.CrownType == crown).ToList());
 }
Exemplo n.º 2
0
 public static List <HeadType> AllHeadsForCrown(CrownType crown)
 {
     return(AllHeads.Where(x => x.CrownType == crown).ToList());
 }