Пример #1
0
 public MechanicalKeyboard(string model, double price, EKeyboardSize size,
                           bool hasBluetooth, ESwitchColor switchColor)
     : this(model, price, size)
 {
     this.HasBluetooth = hasBluetooth;
     this.CableAmount  = 0;
     this.switchColor  = switchColor;
     this.AddSecondaryMaterials();
 }
Пример #2
0
 public MechanicalKeyboard(string model, double price, EKeyboardSize size)
     : base(model, price, size)
 {
 }
Пример #3
0
 public Keyboard(string model, double price, EKeyboardSize size)
     : base(model, price)
 {
     this.keyboardSize = size;
     this.SetStabilazers();
 }