예제 #1
0
 public Computer(ICpu cpu, IRam ram, IEnumerable<HardDrive> hardDrives, VideoCardBase videoCard)
 {
     this.Cpu = cpu;
     this.Ram = ram;
     this.HardDrives = hardDrives;
     this.VideoCard = videoCard;
 }
예제 #2
0
파일: Cpu.cs 프로젝트: jesusico83/Telerik
 internal Cpu(byte numberOfCores, byte numberOfBits, IRam ram, VideoCardBase videoCard, BaseSquareNumberFinder squareNumberFinder)
 {
     this.NumberOfBits = numberOfBits;
     this.ram = ram;
     this.NumberOfCores = numberOfCores;
     this.videoCard = videoCard;
     this.squareNumberFinder = squareNumberFinder;
 }
예제 #3
0
파일: Pc.cs 프로젝트: jesusico83/Telerik
 public Pc(ICpu cpu, IRam ram, IEnumerable<HardDrive> hardDrives, VideoCardBase videoCard)
     : base(cpu, ram, hardDrives, videoCard)
 {
 }
예제 #4
0
 public Pc(ICpu cpu, IRam ram, IEnumerable <HardDrive> hardDrives, VideoCardBase videoCard)
     : base(cpu, ram, hardDrives, videoCard)
 {
 }
예제 #5
0
 public Laptop(ICpu cpu, IRam ram, IEnumerable<HardDrive> hardDrives, VideoCardBase videoCard, LaptopBattery battery)
     : base(cpu, ram, hardDrives, videoCard)
 {
     this.battery = battery;
 }