コード例 #1
0
 public Order_Detail(Order_Detail other)
 {
     this.OrderID = other.OrderID;
     this.ProductID = other.ProductID;
     this.UnitPrice = other.UnitPrice;
     this.Quantity = other.Quantity;
     this.Discount = other.Discount;
 }
コード例 #2
0
 private Order_Detail ClearOrderDetail(Order_Detail orderDetail)
 {
     return new Order_Detail(orderDetail);
 }