示例#1
0
 public GitTfs(ITfsHelper tfsHelper, GitTfsCommandFactory commandFactory, IHelpHelper help, IContainer container, GitTfsCommandRunner runner)
 {
     this.tfsHelper = tfsHelper;
     this.commandFactory = commandFactory;
     _help = help;
     _container = container;
     _runner = runner;
 }
示例#2
0
文件: GitTfs.cs 项目: runt18/git-tfs
 public GitTfs(ITfsHelper tfsHelper, GitTfsCommandFactory commandFactory, IHelpHelper help, IContainer container, IGitTfsVersionProvider gitTfsVersionProvider, GitTfsCommandRunner runner, Globals globals)
 {
     this.tfsHelper = tfsHelper;
     this.commandFactory = commandFactory;
     _help = help;
     _container = container;
     _gitTfsVersionProvider = gitTfsVersionProvider;
     _runner = runner;
     _globals = globals;
 }
示例#3
0
 public GitTfs(GitTfsCommandFactory commandFactory, IHelpHelper help, IContainer container,
     IGitTfsVersionProvider gitTfsVersionProvider, GitTfsCommandRunner runner, Globals globals, Bootstrapper bootstrapper)
 {
     _commandFactory = commandFactory;
     _help = help;
     _container = container;
     _gitTfsVersionProvider = gitTfsVersionProvider;
     _runner = runner;
     _globals = globals;
     _bootstrapper = bootstrapper;
 }
示例#4
0
 public GitTfs(ITfsHelper tfsHelper, GitTfsCommandFactory commandFactory, IHelpHelper help, IContainer container,
     IGitTfsVersionProvider gitTfsVersionProvider, GitTfsCommandRunner runner, Globals globals, TextWriter stdout, Bootstrapper bootstrapper)
 {
     this.tfsHelper = tfsHelper;
     this.commandFactory = commandFactory;
     _help = help;
     _container = container;
     _gitTfsVersionProvider = gitTfsVersionProvider;
     _runner = runner;
     _globals = globals;
     _stdout = stdout;
     _bootstrapper = bootstrapper;
 }
示例#5
0
文件: Help.cs 项目: runt18/git-tfs
 public Help(TextWriter output, GitTfsCommandFactory commandFactory, IContainer container)
 {
     this.output = output;
     this.commandFactory = commandFactory;
     _container = container;
 }
示例#6
0
文件: Help.cs 项目: pmiossec/git-tfs
 public Help(GitTfsCommandFactory commandFactory, IContainer container)
 {
     _commandFactory = commandFactory;
     _container = container;
 }