public void InitializePresenter(dynamic context)
 {
     _context          = context;
     _view             = (IQueryWindowControl)context.QueryWindowControl;
     _view.Presenter   = this;
     TabIndexReference = (int)context.TabIndexReference;
 }
 public override void InitializePresenter(dynamic context)
 {
     _view           = (IQueryWindowControl)context.QueryWindowControl;
     _view.Presenter = this;
     _pubsub         = context.PubSub;
     _pubsub.Subscribe(this, Constants.SubscriptionTypes.THEME_CHANGE);
     TabIndexReference = (int)context.TabIndexReference;
 }