public Decorator(string name, Component component) : base(name) { this.component = component; }
public TeamWithInfrastructure(Component component) : base(component.Name + " with infrastructure", component) { }
public TeamWithStadium(Component component) : base(component.Name + " with stadium", component) { }