elektroniakieszkozok/elektronikaieszkozok/JatekKonzol.cs

38 lines
909 B
C#
Raw Normal View History

2024-09-26 09:02:12 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace elektronikaieszkozok
{
internal class JatekKonzol : Eszkoz, IHalozatraCsatlakoztathato
{
public string gyarto { get; set; }
public int tarhely { get; set; }
public JatekKonzol(string gyarto, int tarhely, string name, string marka, string allapot) : base(name, marka, allapot)
{
this.gyarto = gyarto;
this.tarhely = tarhely;
}
public void csatlakoztatás(string hálózat)
{
throw new NotImplementedException();
}
public override double energiafogyasztas(double uzemora)
{
throw new NotImplementedException();
}
public void lecsatlakoztatás()
{
throw new NotImplementedException();
}
}
}