szimulacio/SzimulacioOOP/Benzinkut.cs
2024-09-24 13:00:05 +02:00

26 lines
476 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SzimulacioOOP
{
internal class Benzinkut
{
public double Keszlet { get; set; }
public double BenzinAr { get; set; }
public double Kassza { get; set; }
public bool Tankolas(Auto kocsi)
{
return false;
}
public void Fizetes(Sofor vezeto)
{
}
}
}