1using System.Windows.Input; 2 3namespace solidware.financials.windows.ui 4{ 5 public interface ObservableCommand : ICommand 6 { 7 void notify_observers(); 8 } 9}