main
1namespace solidware.financials.windows.ui
2{
3 public interface UICommandBuilder
4 {
5 ObservableCommand build<Command>(Presenter presenter) where Command : UICommand;
6 ObservableCommand build<Command, Specification>(Presenter presenter) where Command : UICommand where Specification : UISpecification;
7 }
8}