public void Setup()
 {
     _octopusService = new OctopusService(new CacheManager());
 }
 public DeployController(IOctopusService octopusService)
 {
     _octopusService = octopusService;
 }
 public ProjectsController(IOctopusService octopusService)
 {
     _octopusService = octopusService;
 }
 public CreateOctopusProjectCommand(IOctopusService octopusService)
 {
     _octopusService = octopusService;
 }
 public ReleasesController(IOctopusService octopusService)
 {
     _octopusService = octopusService;
 }
Example #6
0
 public EnvironmentsController(IOctopusService octopusService)
 {
     _octopusService = octopusService;
 }