예제 #1
0
 public GitManager()
 {
     _repositoriesService = new RepositoriesService();
     _branchService       = new BranchService();
     _commitService       = new CommitService();
     _gitService          = new GitService();
 }
예제 #2
0
 public CommitService()
 {
     _repositoriesService = new RepositoriesService();
     _branchService       = new BranchService();
     _context             = new MongoDbContext();
 }
예제 #3
0
 public BranchService()
 {
     _repositoryService = new RepositoriesService();
     _context           = new MongoDbContext();
 }