public ZielKarte(int startbudget, int produktionsmenge, Gewichtung gewichtung) : this()
 {
     StartBudget      = startbudget;
     Produktionsmenge = produktionsmenge;
     Gewichtung       = gewichtung;
     IsActive         = true;
 }
        //
        //private bool _isActive;

        public ZielKarte()
        {
            /*Basekarte
             * ID =
             * KarteAbkurz
             * KarteKategorie
             * Number
             * IsActive
             */
            KarteAbkurz      = KartenTypeAbkurz.Zi;
            IsActive         = false;
            StartBudget      = 0;
            Produktionsmenge = 0;
            Gewichtung       = new Gewichtung(1, 1, 1);
        }