コード例 #1
0
ファイル: ClassicDoor.cs プロジェクト: Division01/KitBox
 public override string GetCode()
 {
     Console.WriteLine("classic door");
     return(string.Concat(attribute, this.height.ToString(), WidthMapper.MapDoorWidth(this.width), ColorMapper.MapPrefix(this.color)));
 }
コード例 #2
0
ファイル: GlassDoor.cs プロジェクト: Division01/KitBox
 public override string GetCode()
 {
     Console.WriteLine("Glass door");
     return(attribute + this.height + WidthMapper.MapDoorWidth(this.width) + "VE");
 }