Exemplo n.º 1
0
 public GitManager()
 {
     _repositoriesService = new RepositoriesService();
     _branchService       = new BranchService();
     _commitService       = new CommitService();
     _gitService          = new GitService();
 }
Exemplo n.º 2
0
 public CommitService()
 {
     _repositoriesService = new RepositoriesService();
     _branchService       = new BranchService();
     _context             = new MongoDbContext();
 }
Exemplo n.º 3
0
 public BranchService()
 {
     _repositoryService = new RepositoriesService();
     _context           = new MongoDbContext();
 }