I want to pass a business object from one method to another. At first this seemed pretty simple but I'm not having much success except to do it as a generic object. Am I missing something really dumb, is there another way or is this just it?
Public Sub DoIt(b as strataframeobject)
' in this example, i want to be able to pass different objects and load the results into cache
end function
Thansk!
The inheritance idea works great except for one problem. When your BO inherits from an abstract class (instead of MicroFour.StrataFrame.Business.BusinessLayer directly) the designer no longer works.
The only drawback to this that I can see is having to manually edit properties such as CRUD, required fields, etc.
Can anyone else think of a reason not to do this?
Thanks!
Clay