To access an object in a list, do something like:
var myList= new List<Workstationid>();
var craftId= myList[0].craftId2;
This is assuming that what you want is the "craftId2" property in the first object of your list. The problem with this approach is that if the list is empty it'll...