17 lines
272 B
C#
17 lines
272 B
C#
namespace TicketSystem.Tickets
|
|
{
|
|
public class Child: Ticket
|
|
{
|
|
public int price { get; }
|
|
|
|
public Child()
|
|
{
|
|
price = 5;
|
|
}
|
|
|
|
public int PriceWithReduction()
|
|
{
|
|
return 2;
|
|
}
|
|
}
|
|
} |