Write a Main class that will serialize the list of the employees in the factory to a file using java.io.Serializable.
You must serialize the Department class as part of the employee serialization.
To keep the length of the serialized list to a minimum when serializing a Department serialize only the department ID. When deserializing use the DepartmentDAO to get the instance.