how about a single void method containing those instead of recreating the wheel in each method you need the notifications to fire?
like UpdateToolBar()?
private void UpdateToolBar(){
//send out notifications... etc..
like UpdateToolBar()?
private void UpdateToolBar(){
//send out notifications... etc..
NotifyOfPropertyChange(() => CanFirst);
NotifyOfPropertyChange(() => CanLast);
NotifyOfPropertyChange(() => CanPrevious);
NotifyOfPropertyChange(() => CanNext);
NotifyOfPropertyChange(() => CanNew);
NotifyOfPropertyChange(() => CanUpdate);
NotifyOfPropertyChange(() => CanDelete);
NotifyOfPropertyChange(() => CanSave);
NotifyOfPropertyChange(() => CanActive);
}