Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
The declaration of the business objects in the ApplicationBasePage.cs works now... however, you need to declare it as a property, so:
private MyBOClass _MyBO;
public MyBOClass MyBO
{
get
{
return this._MyBO;
}
set
{
this._MyBO = value;
}
}
Then, just build and it will be there as a possible option for the data source of bindable controls.
|