vector<Employee> staff; sort(staff.begin(), staff.end());
bool operator<(const Employee& a, const Employee& b) { return a.get_name() < b.get_name(); }