20 lines
402 B
C#
20 lines
402 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace FelhasznalokGrafikus
|
|
{
|
|
class UgyfelUser: Felhasznalo
|
|
{
|
|
|
|
public UgyfelUser(string tnev, string login, string jelszo, string email) : base(tnev, login, jelszo, email)
|
|
{
|
|
|
|
}
|
|
public void belepes()
|
|
{
|
|
Console.WriteLine("Ez az ügyfél belépése.");
|
|
}
|
|
}
|
|
}
|