Geting Employee num from Labor actvity in Customization

Getting ‘Erp.BO.LaborDataSet.LaborDtlDataTable’ does not contain a definition for ‘Item’ and no extension method ‘Item’ accepting a first argument of type ‘Erp.BO.LaborDataSet.LaborDtlDataTable’ could be found (are you missing a using directive or an assembly reference?) when trying to access a field that I see is listed in the Object explorer.

Assemblies references
image

trying to set a string to the Labor EmpoyeeNum

LaborAdapter labor = new LaborAdapter(oTrans.EpiBaseForm);

string empID = labor.LaborData.LaborDtl.Item.EmployeeNum;

What Am I missing here or using this wrong?

@mjbest6288 Here is what I see in Data Objects.

I made that into this in Form_Load

EpiDataView edvStart = (EpiDataView)(oTrans.EpiDataViews["Start"]);
		string empID = (string)edvStart.dataView[edvStart.Row]["EmployeeNum"];	
		
		EpiMessageBox.Show("Employee is " + empID);