public GitCommitService(
     IGitCmdService gitCmdService,
     IGitDiffService gitDiffService,
     IGitLogService gitLogService,
     IWorkingFolder workingFolder)
 {
     this.gitCmdService  = gitCmdService;
     this.gitDiffService = gitDiffService;
     this.gitLogService  = gitLogService;
     this.workingFolder  = workingFolder;
 }
예제 #2
0
 public CommitsService(IGitLogService gitLogService)
 {
     this.gitLogService = gitLogService;
 }