24 lines
554 B
C#
24 lines
554 B
C#
|
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;
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|