Beispiel #1
0
        public override Dictionary <string, string> ToDict()
        {
            var dict = new Dictionary <string, string>();

            dict.Add("KategorieID", KategorieId.ToString());
            dict.Add("Bezeichnung", Bezeichnung);
            dict.Add("Menge", Menge.ToString());
            dict.Add("Leihpreis", Leihpreis.ToString());

            return(dict);
        }
Beispiel #2
0
 public override string ToString()
 {
     return(KategorieId.ToString()); // Für bessere Coded UI Test Erkennung
 }