using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace elektronikaieszkozok { internal class Tablet : Eszkoz, IHalozatraCsatlakoztathato { public int kijelzomeret { get; set; } public int felbontas { get; set; } public Tablet(int kijelzo, int felbontas, string name, string marka, string allapot) : base(name, marka, allapot) { this.kijelzomeret = kijelzo; this.felbontas = felbontas; } public void csatlakoztatás(string hálózat) { throw new NotImplementedException(); } public override double energiafogyasztas(double uzemora) { throw new NotImplementedException(); } public void jatekJatszas() { Console.WriteLine("jatek indul"); } public void lecsatlakoztatás() { throw new NotImplementedException(); } public void webBongeszes() { Console.WriteLine("webboldal betolt"); } } }