public ColumnSearchPlugin()
        {
            state = new ColumnSearchState();
            controller = new Controller(state);

            EventBroker.Subscribe<string>(AppEvents.RequestNewSearch, controller.RequestNewSearch);
        }
示例#2
0
 public PluginHelper(ColumnSearchState state)
 {
     this.state = state;
 }
示例#3
0
 public PluginHelper(ColumnSearchState state)
 {
     this.state = state;
 }
示例#4
0
 public Controller(ColumnSearchState state)
 {
     this.state = state;
 }