public ProductOrderDto(string productReference, ConfiguredDimensionDto configuredDimension,
                        ConfiguredMaterialDto material, List <ConfiguredPartDto> parts, string reference,
                        List <ConfiguredSlotDto> configuredSlots, List <ConfiguredProductDto> listProducts, PriceDto price) :
     base(productReference, configuredDimension, material, parts, reference, configuredSlots, price)
 {
     ListProducts = listProducts;
 }
示例#2
0
 public ChildConfiguredProductDto(string parentReference, string slotReference, string productReference, ConfiguredDimensionDto configuredDimension, ConfiguredMaterialDto material, string reference, List <ConfiguredSlotDto> configuredSlots)
 {
     this.ParentReference     = parentReference;
     this.SlotReference       = slotReference;
     this.ProductReference    = productReference;
     this.Reference           = reference;
     this.ConfiguredDimension = configuredDimension;
     this.Parts = new List <ConfiguredPartDto>();
     this.ConfiguredMaterial = material;
     this.ConfiguredSlots    = configuredSlots;
 }
示例#3
0
 public ConfiguredProductDto(string productReference, ConfiguredDimensionDto configuredDimension, ConfiguredMaterialDto material,
                             List <ConfiguredPartDto> parts, string reference, List <ConfiguredSlotDto> configuredSlots, PriceDto price)
 {
     this.ProductReference    = productReference;
     this.Reference           = reference;
     this.Parts               = parts;
     this.ConfiguredDimension = configuredDimension;
     this.ConfiguredMaterial  = material;
     this.ConfiguredSlots     = configuredSlots;
     this.Price               = price;
 }