Exemplo n.º 1
0
		public Order(DateTime date, bool shipped, Product product, int quantity) {
			this.date = date;
			this.shipped = shipped;
			this.product = product;
			this.quantity = quantity;
		}
Exemplo n.º 2
0
		public Order() {
			this.date = DateTime.Today;
			this.shipped = false;
			this.product = new Product ("", 0);
			this.quantity = 0;
		}