static void Main()
    {
        IEnumerable <LernMoment> momente = LernMoment.ErstelleTestCollection();

        Console.WriteLine();
        KopfzeileAusgeben();
        foreach (LernMoment lm in momente)
        {
            LernMomentAusgeben(lm);
        }

        Console.WriteLine();
    }