Esempio n. 1
0
 public Person(string name, double gehalt, MTyp mtyp, int personalnummer = -1)
 {
     this.name     = name;
     this.gehalt   = gehalt;
     this.mtyp     = mtyp;
     NaechstPersNr = personalnummer != -1 ? personalnummer : NaechstPersNr;
 }
Esempio n. 2
0
        public static double Gehaltvolumen(Person[] personen, MTyp mtyp)
        {
            double sum = 0;

            for (int i = 0; i < personen.Length; i++)
            {
                if (personen[i].mtyp == mtyp)
                {
                    sum += personen[i].gehalt;
                }
            }

            return(sum);
        }