38 lines
909 B
C#
38 lines
909 B
C#
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();
|
|
}
|
|
}
|
|
}
|