Public Interface IEmployeesMainForm Inherits IActivityMainForm ''' ''' Gets all the employees. ''' ''' Function GetAllEmployees() As ICollection(Of IEmployee) ''' ''' Selects an employee. ''' ''' ''' Sub SelectEmployee(employeeIndex As Integer, employee As IEmployee) ''' ''' Removes the selection of the current employee. ''' Sub DeselectEmployee(employeeIndex As Integer) ''' ''' Gets the selected employee for this index. This function still works if no employee was selected yet. ''' ''' ''' The selected employee if there is one. 'Nothing' if there wasn't one. Function GetSelectedEmployee(employeeIndex As Integer) As IEmployee Sub StartActivity(employeeIndex As integer) Sub FinishActivity(employeeIndex As integer) Sub StopActivity(employeeIndex As integer) End Interface