예제 #1
0
 public void CreateVBattery()
 {
     this._battery = new Battery();
 }
예제 #2
0
파일: Laptop.cs 프로젝트: didimitrov/Algo
 public Laptop(ICpu cpu, IRam ram, IVideoCard gpu, IStorage storage, IRechargable battery)
     : base(cpu, ram, gpu, storage)
 {
     Battery = battery;
 }