Koktelok/Martini.cs

21 lines
425 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Koktelok
{
internal class Martini : Koktel
{
public override string Keveres()
{
return "A martinit nem tudom hogyan kell elkészíteni.";
}
public Martini(string Nev)
{
this.Nev = Nev;
}
}
}