public GitServiceExecutor(GitServiceExecutorParams parameters, IGitRepositoryLocator repoLocator)
 {
     this.gitPath             = parameters.GitPath;
     this.gitHomePath         = parameters.GitHomePath;
     this.repositoriesDirPath = parameters.RepositoriesDirPath;
     this.repoLocator         = repoLocator;
 }
 public GitServiceExecutor(GitServiceExecutorParams parameters, IGitRepositoryLocator repoLocator)
 {
     this.gitPath = parameters.GitPath;
     this.gitHomePath = parameters.GitHomePath;
     this.repositoriesDirPath = parameters.RepositoriesDirPath;
     this.repoLocator = repoLocator;
 }
Example #3
0
 public AuditPusherToGitNotes(IHookReceivePack next, IGitRepositoryLocator repoLocator, Bonobo.Git.Server.Data.IRepositoryRepository repoConfig, IMembershipService userRepo)
 {
     this.next        = next;
     this.repoLocator = repoLocator;
     this.repoConfig  = repoConfig;
     this.userRepo    = userRepo;
 }
 public AuditPusherToGitNotes(IHookReceivePack next, IGitRepositoryLocator repoLocator, Bonobo.Git.Server.Data.IRepositoryRepository repoConfig, IMembershipService userRepo)
 {
     this.next = next;
     this.repoLocator = repoLocator;
     this.repoConfig = repoConfig;
     this.userRepo = userRepo;
 }
 public AuditPusherToGitNotes(IHookReceivePack next, IGitRepositoryLocator repoLocator, GitConnector.Data.IRepositoryRepository repoConfig, IMembershipService userRepo)
 {
     Console.WriteLine("AuditPusherToGitNotes {0}, {1}, {2}, {3}", next, repoLocator, repoConfig, userRepo);
     this.next = next;
     this.repoLocator = repoLocator;
     this.repoConfig = repoConfig;
     this.userRepo = userRepo;
 }