public ApplicationProductItem(ApplicationProduct product, ApplicationOrderItem orderItem, bool sold = false)
 {
     Product = product;
     OrderItem = orderItem;
     Sold = sold;
 }
示例#2
0
 public ApplicationOrderItem(ApplicationProduct productId, ApplicationOrder orderId, int id = 0)
 {
     Product = productId;
     Order   = orderId;
     Id      = id;
 }