1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49:
| class Karte { private string name; private string edition; private int anzahl; private int startAnzahl;
public List<Angebot> angebote;
#region Properties
public string Name { get { return name; } }
public string Edition { get { return edition; } }
public int Anzahl { get { return anzahl; } set { anzahl = value; } }
public int StartAnzahl { get { return startAnzahl; } }
#endregion internal Karte(string cardName, int cardCount, string edition) { angebote = new List<Angebot>(); this.name = CultureInfo.CurrentCulture.TextInfo.ToTitleCase(cardName.Trim()); this.anzahl = cardCount; this.edition = edition; this.startAnzahl = cardCount; }
internal void AddAngebot(string verkaufer, int anzahl, bool foil, float preis, string zustand, string sprache, int evalGrade, string standort) { Angebot angebot = new Angebot(verkaufer, anzahl, foil, preis, zustand, sprache, evalGrade, standort); angebote.Add(angebot); } } |