I have the following situation with three tables, which are inherited from
contactBasics contactSales (foreign key of contactBasics) contactSupporters (foreign key of contactBasics)
- The general data about a person is stored in contactBasics
- Specific data about Sales People are additionally stored in contactSales
- Specific data about Supporting People are additionally stored in contactSupporters
Is there a good way to handle e.g. contactBasics and contactSales as one object in code ?
help appreciated. Endo