public void Notify()
 {
     m_viewModel.RaisePropertyChanged(m_args);
 }
 public static void NotifyOfPropertyChange(this NotifyPropertyChangedBase vm, string name)
 {
     // Note occurs overhead of allocating the eventArgs object
     vm.RaisePropertyChanged(new PropertyChangedEventArgs(name));
 }