public FinishDto(string name, string reference, string description, PriceDto price) { this.Name = name; this.Description = description; this.Reference = reference; this.Price = price; }
public MaterialDto(string reference, string name, string description, PriceDto price, string relativeURL) { this.Reference = reference; this.Description = description; this.Name = name; this.Price = price; this.RelativeURL = relativeURL; }
public MaterialDto(string reference, string name, string description, PriceDto price, List <ColorDto> colors, List <FinishDto> finishes) { this.Reference = reference; this.Name = name; this.Description = description; this.Price = price; this.Colors = colors; this.Finishes = finishes; }
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; }
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; }
public ProductDto(string reference, string name, string description, string categoryReference, PriceDto price, SlotDefinitionDto slotDefinition) { this.Reference = reference; this.Name = name; this.Description = description; this.CategoryReference = categoryReference; this.Price = price; this.SlotDefinition = slotDefinition; }
public ProductDto(string reference, string name, string description, string categoryReference, PriceDto price, List <PartDto> parts, List <ProductMaterialDto> productMaterialList, List <DimensionValuesDto> dimensions, SlotDefinitionDto slotDefinition) { this.Reference = reference; this.Name = name; this.Description = description; this.CategoryReference = categoryReference; this.Price = price; this.Parts = parts; this.ProductMaterialList = productMaterialList; this.Dimensions = dimensions; this.SlotDefinition = slotDefinition; }