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"); } } }