public QAInstallerExplorerBarItem(IQAInstaller installer, IExplorerBarItem parent, IServiceLocator serviceLocator) : base(parent, serviceLocator) { _installer = installer; SubscribeToEvent <InstallerBranchedEventData>(InstallerBranchedHandler); }
public IExplorerBarItem CreateQAInstallerItem(IQAInstaller installer) { return(new QAInstallerExplorerBarItem(installer, _parent, _serviceLocator)); }
public NewQAInstallerEventData(IQAInstaller installer, IQaBranch qaBranch) { this.Installer = installer; this.QABranch = qaBranch; }