Example #1
0
 public static ISpiel toSpiel(this ISitzung sitzung)
 {
     var spiel = new Spiel(sitzung.Auftraege.Select(x => x.toSchein()).ToArray());
     spiel.Vorlage = spiel.Scheine[0];
     return spiel;
 }
Example #2
0
 public static void delete()
 {
     var spiel = new Spiel { Vorlage = new Normalschein() };
     CurrentSpiel = spiel;
 }