46 lines
1.1 KiB
C#
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 Telefon : Eszkoz, IHalozatraCsatlakoztathato
|
|
{
|
|
public string oprendszer { get; set; }
|
|
public int kamerafelbontas { get; set; }
|
|
|
|
public Telefon(string nev,string marka, string allapot, string op, int kamera) : base(nev, marka, allapot)
|
|
{
|
|
this.oprendszer = op;
|
|
this.kamerafelbontas = kamera;
|
|
}
|
|
|
|
public void hivas()
|
|
{
|
|
Console.WriteLine("hivas inditasa");
|
|
}
|
|
public void uzenet()
|
|
{
|
|
Console.WriteLine("uzenet elkuldve");
|
|
}
|
|
|
|
public override double energiafogyasztas(double uzemora)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void csatlakoztatás(string hálózat)
|
|
{
|
|
Console.WriteLine($"csatlakoztatva: {hálózat}");
|
|
}
|
|
|
|
public void lecsatlakoztatás()
|
|
{
|
|
Console.WriteLine("lecsatlakoztatva a halozatrol");
|
|
}
|
|
|
|
}
|
|
}
|