/// <summary> /// Removes the employee data associated with the "Test" user from the database /// Must be run prior to the RemoveTestUserData otherwise the user will be removed but not the associated employee link /// </summary> /// <param name="userID"></param> public void RemoveTestEmployeeData() { TestManager testMgr = new TestManager(); testMgr.DeleteTestEmployee(); testMgr = null; }