Ejemplo n.º 1
0
 //Set the selected operating system
 public void updateOpSys(string updateTo)
 {
     this.selectedSystem = new OpSys(updateTo);
 }
Ejemplo n.º 2
0
 public Computer(string description, DateTime dateOfPurchase, int monthsOfWarranty, double priceOfPurchase, Maker manufacturer, bool batteries, OpSys operatingSystem, bool laptop)
     : base(description, dateOfPurchase, monthsOfWarranty, priceOfPurchase, manufacturer, batteries)
 {
     OperatingSystem = operatingSystem;
     Laptop          = laptop;
 }