예제 #1
0
파일: GitTfs.cs 프로젝트: hammerdr/git-tfs
 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
파일: GitTfs.cs 프로젝트: pmiossec/git-tfs
 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
파일: GitTfs.cs 프로젝트: EdwinTai/git-tfs
 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;
 }