public CreateTeamcitySolutionCommand(ICreateTeamcityProjectFactory modelFactory,
                                      ITeamcityVcsRootModelFactory vcsModelFactory,
                                      ICreateProjectCommand createProjectCommand,
                                      ICreateBuildCommand createBuildCommand,
                                      ICreateVcsRootCommand createVcsRootCommand,
                                      IUpdateBuildParameterCommand updateBuildParameterCommand,
                                      IGetProjectByIdQuery getProjectQuery,
                                      ICreateVisualStudioSolutionCommand createVisualStudioSolutionCommand)
 {
     _modelFactory                      = modelFactory;
     _vcsModelFactory                   = vcsModelFactory;
     _createProjectCommand              = createProjectCommand;
     _createBuildCommand                = createBuildCommand;
     _createVcsRootCommand              = createVcsRootCommand;
     _updateBuildParameterCommand       = updateBuildParameterCommand;
     _getProjectQuery                   = getProjectQuery;
     _createVisualStudioSolutionCommand = createVisualStudioSolutionCommand;
 }
 public CreateSolutionCommand(ICreateVisualStudioSolutionCommand createVisualStudioSolutionCommand,
                              ICreateTeamcitySolutionCommand createTeamcitySolutionCommand)
 {
     _createVisualStudioSolutionCommand = createVisualStudioSolutionCommand;
     _createTeamcitySolutionCommand     = createTeamcitySolutionCommand;
 }
Example #3
0
 public void Setup()
 {
     _sut           = Get <ICreateVisualStudioSolutionCommand>();
     _configuration = Get <IConfiguration>();
 }