package base; public interface EmployeeActions { void hire(); void fire(); void transfer(); void accrueSalary(); }