Example #1
0
 public Motherboard(RamMemory ramMemory, VideoCard videoCard, IDrawStrategy drawStrategy)
 {
     this.RamMemory = ramMemory;
     this.VideoCard = videoCard;
     this.drawStrategy = drawStrategy;
 }
 public Motherboard(RamMemory ramMemory, VideoCard videoCard, IDrawStrategy drawStrategy)
 {
     this.RamMemory    = ramMemory;
     this.VideoCard    = videoCard;
     this.drawStrategy = drawStrategy;
 }
Example #3
0
 public Motherboard(RamMemory ramMemory, VideoCard videoCard)
     : this(ramMemory, videoCard, new VideoCardDrawStrategy())
 {
 }
 public Motherboard(RamMemory ramMemory, VideoCard videoCard)
     : this(ramMemory, videoCard, new VideoCardDrawStrategy())
 {
 }