I noticed that this is handle in the the DDT Table Properties, so in order for me to upgrade this project, would it be just a matter to turn on those features and choose my Version Field which I have been using? or besides doing that in the DDT I should do some other modifications to my projects?
No, but you don't really need it to. If you are using the standard names that the DDT produces (TableName_Delete, for example) then you do not need to set the SPROC name, just set the property that indicates that the CRUD setting will be true and the default naming schema will be used. So in this case, just set the following properties to True:
Then if you are using row version concurrency, set the concurrency properties:
Automatically forcing the BO to set the stored procedure flags isn't really something that should be done as there are times you want to turn this off. But as for the names, you don't need to override them, just use the default naming convention and it will already be handled for you.
I made the changes to my base BO and like you said, it was straight forward using the default SP names.