public VideoCard(IStringBuilderDrawer drawer)
 {
     this.Drawer = drawer;
 }
示例#2
0
 public Hp(IComputerFactory factory, IStringBuilderDrawer drawer)
 {
     this.factory = factory;
     this.drawer = drawer;
 }
 public ColorfulVideoCard(IStringBuilderDrawer drawer)
     : base(drawer)
 {
 }
 public MonochromeVideoCard(IStringBuilderDrawer drawer)
     : base(drawer)
 {
 }