I have four classes:
Employee - contains only fields that hold informations about particular employee
EmployeeGroup - contains only fields which describe type of jobs employee can do, each employee belongs to one of the EmployeeGroup classes.
EmployeeDBase - contains methods for adding or getting employee and employeegroup from database.
EmployeeForm - uses EmployeeDbase methods to get or add Employee or EmployeeGroup fields to database. It also has it's own methods for displaying informations in form.
I think relation between Employee and EmplyeeGroup is agregation and between EmplyeeForm and EmployeeDBase dependancy. Is there any othere relations Employee and EmployeeForm, Employee and EmplyeeDBase (because both are working with Employee objects).---