public override int GetHashCode() { int hash = 1; if (Id.Length != 0) { hash ^= Id.GetHashCode(); } if (Name.Length != 0) { hash ^= Name.GetHashCode(); } if (Menge != 0) { hash ^= Menge.GetHashCode(); } if (Datum.Length != 0) { hash ^= Datum.GetHashCode(); } if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } return(hash); }
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); }
private void CreateEntries() { Hardware.Add("Motherboard"); Hardware.Add("Prozessor"); Hardware.Add("Speicher"); Hardware.Add("Festplatte"); Hardware.Add("DVD RAM"); for (int i = 1; i <= 10; i++) { Menge.Add(i); } }