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