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 Items(Model model, Manufacture manufacture, Processores cpu, string motherboard, Storage gb, Os os, Color color, int qty, float price)
 {
     SetModel(model);
     SetManufactures(manufacture);
     SetCpu(cpu);
     SetMotherboard(motherboard);
     SetGb(gb);
     SetOs(os);
     SetColor(color);
     SetQty(qty);
     SetPrice(price);
 }
 public void SetCpu(Processores cpu)
 {
     this.cpu = cpu;
 }
 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);
 }