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