exos-polymorphism/TicketSystem/Tickets/Student.cs
2023-07-01 16:44:08 +02:00

17 lines
280 B
C#

namespace TicketSystem.Tickets
{
public class Student: Ticket
{
public int price { get; }
public Student()
{
price = 10;
}
public int PriceWithReduction()
{
return 10-3;
}
}
}