示例#1
0
 //Constructors
 public Laptop(string model,string manufacturer,string processor,int ram,string graphicsCard,string hdd,string screen, Battery battery, decimal price)
 {
     this.Model = model;
     this.Manufacturer = manufacturer;
     this.Processor = processor;
     this.Ram = ram;
     this.GraphicsCard = graphicsCard;
     this.Hdd = hdd;
     this.Screen = screen;
     this.battery = battery;
     this.Price = price;
 }
示例#2
0
 public Laptop(string model, string screen, Battery battery, decimal price)
     : this(model, null, null, 0, null, null, screen, battery, price)
 {
 }
示例#3
0
 public Laptop(string model, string screen, Battery battery, decimal price)
     : this(model, null, null, 0, null, null, screen, battery, price)
 {
 }
示例#4
0
 //Constructors
 public Laptop(string model, string manufacturer, string processor, int ram, string graphicsCard, string hdd, string screen, Battery battery, decimal price)
 {
     this.Model        = model;
     this.Manufacturer = manufacturer;
     this.Processor    = processor;
     this.Ram          = ram;
     this.GraphicsCard = graphicsCard;
     this.Hdd          = hdd;
     this.Screen       = screen;
     this.battery      = battery;
     this.Price        = price;
 }