Beispiel #1
0
 public IEnumerable <Party> GetParticipiatsByRole(PartyRole role)
 {
     return(Roles.Where(r => r.Id == role.Id).Select(r => r.Party));
 }