Advertisement
Stann

Untitled

Sep 17th, 2014
400
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.37 KB | None | 0 0
  1. public Laptop(string model, double price, string manufacturer = null, string cpu = null, string ram = null, string gpu = null, string hdd = null, Battery battery = null, string screen = null)
  2. {
  3. this.Model = model;
  4. this.Price = price;
  5. this.Manufacturer = manufacturer;
  6. this.CPU = cpu;
  7. this.RAM = ram;
  8. this.GPU = gpu;
  9. this.HDD = hdd;
  10. this.Battery = battery;
  11. this.Screen = screen;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement