Public Interface IWorkItemsMainForm
'''
''' Fetch the work items for a specific grid.
'''
''' The index of the grid, 0 based
''' A list containing all work items
Function GetWorkItems(gridNumber As Integer) As List(Of IWorkItem)
'''
''' A different activity was selected in the grid.
'''
''' The activity. Nothing means no activity was selected.
''' The number of the grid
sub ChangeSelectedActivity(activity As IActivity, gridNumber As Integer)
End Interface