public ProductAttributeMapping(ProductAttributeMappingId id, string textvalue, int? intvalue, decimal? decimalvalue, Product product, ProductAttribute productattribute) { this.id= id; this.textvalue= textvalue; this.intvalue= intvalue; this.decimalvalue= decimalvalue; this.product= product; this.productattribute= productattribute; }
public ProductAttributeMapping(ProductAttributeMappingId id, Product product, ProductAttribute productattribute) { this.id= id; this.product= product; this.productattribute= productattribute; }
public OrderLineId(Order order, Product prod) { this.Order = order; this.Product = prod; }