コード例 #1
0
ファイル: Decorator.cs プロジェクト: tvshevchuk/OOD
 public Decorator(string name, Component component)
     : base(name)
 {
     this.component = component;
 }
コード例 #2
0
 public TeamWithInfrastructure(Component component)
     : base(component.Name + " with infrastructure", component)
 {
 }
コード例 #3
0
ファイル: TeamWithStadium.cs プロジェクト: tvshevchuk/OOD
 public TeamWithStadium(Component component)
     : base(component.Name + " with stadium", component)
 {
 }