23 lines
601 B
C#
23 lines
601 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Garázsszimulátor
|
|||
|
{
|
|||
|
class Teherauto : Jarmuvek
|
|||
|
{
|
|||
|
public Teherauto(string marka, string tipus, int rendszam, string rakomany, int rakomennyi, string menetlevel)
|
|||
|
{
|
|||
|
this.marka = marka;
|
|||
|
this.besorolas = "Teherauto";
|
|||
|
this.tipus = tipus;
|
|||
|
this.rendszam = rendszam;
|
|||
|
this.rakomany = rakomany;
|
|||
|
this.rakomennyi = rakomennyi;
|
|||
|
this.menetlevel = menetlevel;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|