17 lines
280 B
C#
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;
|
|
}
|
|
}
|
|
} |