data Service WOLV
WOLV there is a public property DataService
through which it is possible to used the data service and/or install your.
This was used public property:
public IDataService DataService { get; set; }
Having used the service data, you can add your handlers of some events, for example:
(webObjectListView.DataService as SQLDataService).AfterUpdateObjects += delegate(object sender, DataObjectsEventArgs args)
{
// ...
}
Note: Without a cast to a specific type
DataService
, events bind will fail.