public static Tisch ErzeugeBestehendenTisch(TischNr tischnr, List <ITischEvent> tischInhalt) { return(new Tisch(tischnr, tischInhalt)); }
public Tisch(TischNr tischnr) { TischNr = tischnr; _events = new List <ITischEvent>(); }
internal Tisch(TischNr tischnr, List <ITischEvent> tischInhalt) { TischNr = tischnr; _events = tischInhalt; }