public GitFileDiffController( IGitRepositoryFactory gitRepositoryFactory, IGitRepoService gitRepoService, IGitFileService gitFileService) { this.gitRepoService = gitRepoService; this.gitFileService = gitFileService; this.gitRepositoryFactory = gitRepositoryFactory; }
public GitBranchDiffController( IGitRepositoryFactory gitRepositoryFactory, IGitDiffService gitBranchDiffService, IGitFileService itemIdentityService, IGitRepoService gitRepoService) { this.gitBranchDiffService = gitBranchDiffService; this.itemIdentityService = itemIdentityService; this.gitRepoService = gitRepoService; this.gitRepositoryFactory = gitRepositoryFactory; }
public OpenRepoService( IRecentReposService recentReposService, IGitInfoService gitInfoService, IGitRepoService gitRepoService, IStartInstanceService startInstanceService, IMessage message, IProgressService progressService, WindowOwner owner) { this.owner = owner; this.recentReposService = recentReposService; this.gitInfoService = gitInfoService; this.gitRepoService = gitRepoService; this.startInstanceService = startInstanceService; this.message = message; this.progressService = progressService; }