elektroniakieszkozok/elektronikaieszkozok/Tablet.cs
Nándor Árgyelán f2d4434123 kesz
2024-09-26 11:02:12 +02:00

46 lines
1.1 KiB
C#

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");
}
}
}