Beispiel #1
0
 public Item(string description, double price, int quantity)
 {
     ItemNumber       = NumberManager.GetItemNumber();
     this.Description = description.ToUpper();
     this.Price       = price;
     this.Quantity    = quantity;
 }
Beispiel #2
0
 public Item()
 {
     ItemNumber = NumberManager.GetItemNumber();
 }