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;
 }