Hi,
In my E-commerce application, I want to add a attribute to a Product, only after it was added to a Category.(Not all Products are in a Category here). How can I design the Product class?
Thanks in advance!
Hi,
In my E-commerce application, I want to add a attribute to a Product, only after it was added to a Category.(Not all Products are in a Category here). How can I design the Product class?
Thanks in advance!
// Or am I missing something?
if (_category != null) AddAttribute(...);