Kindly can someone guide me on how to achieve this?
- Create a class
Company
and define attributesCompany Name
,Company Address
. - Create a class
Employees
and define attributesEmployee Name
,Phone Number
, andEmail
. - Create a relationship between the above two classes where a
Company
can have multipleEmployees
in such a way as to retrieve company and its employee information through itsCompany
object.