Department::Department(const Department& b) { name = b.name; if (b.receptionist == NULL) receptionist = NULL; else receptionist = new Employee(b.receptionist->get_name(), b.receptionist->get_salary()); }