public CheckOutUICommand(SvnExplorerSelection selection)
     : base("Checkout")
 {
     this.selection = selection;
 }
 public GenerateEmptyProjectCommand(SvnExplorerSelection selection)
     : base(selection, @"EmptyProject", @"Generate empty project")
 {
 }
 protected BaseGenerateCommand(SvnExplorerSelection selection, string baseTemplateDir, string commandName)
     : base(commandName)
 {
     this.selection = selection;
     this.baseTemplateDir = baseTemplateDir;
 }
 public GenerateVB6ProjectCommand(SvnExplorerSelection selection)
     : base(selection, @"VB6Project", @"Generate VB6 project")
 {
 }
 public MergeBranchCommand(SvnExplorerSelection svnSelection)
     : base(@"Merge branch")
 {
     this.svnSelection = svnSelection;
 }