Exemple #1
0
 public Installer(
     ICommandLine commandLine,
     ICmd cmd,
     IGitEnvironmentService gitEnvironmentService,
     IProgressService progressService)
 {
     this.commandLine           = commandLine;
     this.cmd                   = cmd;
     this.gitEnvironmentService = gitEnvironmentService;
     this.progressService       = progressService;
 }
 public GitCmdService(
     ICmd2 cmd,
     IGitEnvironmentService gitEnvironmentService,
     ICredentialService credentialService,
     IMessage message,
     IWorkingFolder workingFolder)
 {
     this.cmd = cmd;
     this.gitEnvironmentService = gitEnvironmentService;
     this.credentialService     = credentialService;
     this.message       = message;
     this.workingFolder = workingFolder;
 }
Exemple #3
0
 public GitInfoService(IGitEnvironmentService gitEnvironmentService)
 {
     this.gitEnvironmentService = gitEnvironmentService;
 }