Garazsszimulator/Garázsszimulátor/Garazsmester.cs

21 lines
429 B
C#
Raw Permalink 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 Garazsmester : Szemelyzet
{
public Garazsmester(string nev, bool nem, int kor, int egyenleg)
{
this.nev = nev;
this.nem = nem;
this.kor = kor;
this.egyenleg = egyenleg;
}
}
}