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