26 lines
476 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|