Garazsszimulator/Garázsszimulátor/Szemelyauto.cs

24 lines
554 B
C#
Raw Normal View History

2023-10-26 09:19:52 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Garázsszimulátor
{
class Szemelyauto : Jarmuvek
{
public Szemelyauto(string marka, string tipus, int rendszam, int szallszemszam, int fuvardij)
{
this.marka = marka;
this.besorolas = "Szemelyauto";
this.tipus = tipus;
this.rendszam = rendszam;
this.szallszemszam = szallszemszam;
this.fuvardij = fuvardij;
}
}
}