Koktelok/Koktel.cs

19 lines
397 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Koktelok
{
internal abstract class Koktel
{
public string Nev { get; set; }
public abstract string Keveres();
public void Hozzavalok()
{
Console.WriteLine($"A {Nev} koktélhoz");
}
}
}