public void GivenIHaveAPlanetWithResourceValue(int resourceValue)
 {
     this.planet = new Planet { ResourceValue = resourceValue };
 }
 public SpaceDock(Planet planet, Technology technology)
 {
     this.planet = planet;
     this.hasEnviroCompensator = technology == Technologies.EnviroCompensator;
 }
 public SpaceDock(Planet planet, Technology technology)
 {
     this.planet = planet;
     this.hasEnviroCompensator = technology == Technologies.EnviroCompensator;
 }