Public Interface IActivityActions ''' ''' The employee starts the activity. ''' ''' Sub StartActivity(employee As IEmployee) ''' ''' The employee stops the activity. ''' Sub StopActivity() ''' ''' The employee finishes the activity. ''' Sub FinishActivity() End Interface