exos-polymorphism/TicketSystem/Tickets/Ticket.cs
2023-07-01 17:01:12 +02:00

23 lines
364 B
C#

namespace TicketSystem.Tickets
{
public enum TicketType
{
Child,
Student,
Adult
}
public class Ticket
{
public int price { get; }
public Ticket()
{
price = 20;
}
public int PriceWithReduction()
{
return price - price/100*20;
}
}
}