On Sep 19, 2015, at 12:03 PM, Oto Iashvili wrote:
> Hi,
>
> I have a product class with category and a polymorphic attributes
> details_info, that depending on category go to one or another table to get
> the detail
>
>
> Class Product
> category
> details_info
>
> end
>
> Class DetailsI
Hi,
I have a product class with category and a polymorphic attributes
details_info, that depending on category go to one or another table to get
the detail
Class Product
category
details_info
end
Class DetailsInfo
...
end
Class Pencil
include DetailsInfo
type
color
end
Class Notebook