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