public virtual void SetTb(Hardisk tb)
 {
     this.tb = tb;
 }
 public Tablet(Model model, Manufacture manufacture, Processores cpu, string motherboard, Storage gb, Os os, Color color, int qty, float price, Hardisk tb, camModels camModel, int pixels, float zoom, int f, float camPrice, double thic) : base(model, manufacture, cpu, motherboard, gb, os, color, qty, price, tb)
 {
     SetCamModel(camModel);
     SetPixels(pixels);
     SetZoom(zoom);
     SetF(f);
     SetCamPrice(camPrice);
     SetThic(thic);
 }
 public Computer(Model model, Manufacture manufacture, Processores cpu, string motherboard, Storage gb, Os os, Color color, int qty, float price, Hardisk tb) : base(model, manufacture, cpu, motherboard, gb, os, color, qty, price)
 {
     SetTb(tb);
 }