Just create two enumerations and then associate them with the field in the BO Mapper. For example, let's take your StatusID field. Step 1
Public Enum StatusTypes As Integer
Active = 0
Inactive = 1
End Enum
(Generally when I am associating enums with BO fields, I will create the enums in the same assembly and namespace as the BOs themselves).
Step 2
Now open the BO Mapper and navigate to the field you wish to associate with the enum. Select the field and then click "Customize" and then set the Custom Data Type setting:

Click OK...and be sure to rebuild your partial class for the change to take affect.
Step 3
Go to your form where you want to populate a combo with an enum. Select the combo and go to the property sheet to setup the enum population:
