20 lines
402 B
C#
20 lines
402 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Garázsszimulátor
|
|||
|
{
|
|||
|
class Fonok : Szemelyzet
|
|||
|
{
|
|||
|
public Fonok(string nev, bool nem, int kor, int egyenleg)
|
|||
|
{
|
|||
|
this.nev = nev;
|
|||
|
this.nem = nem;
|
|||
|
this.kor = kor;
|
|||
|
this.egyenleg = egyenleg;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|