exos-polymorphism/TicketSystem/Order.cs
2023-07-01 16:59:32 +02:00

31 lines
665 B
C#

using System.Collections.Generic;
using System.Diagnostics;
using TicketSystem.Tickets;
namespace TicketSystem
{
public class Order
{
/// <summary>
/// Add the given ticket to the order
/// </summary>
public void AddTicket(Ticket ticket)
{
}
/// <summary>
/// Add the correct ticket based on its type to the order
/// </summary>
public void AddTicket(TicketType type)
{
}
/// <summary>
/// Change the price to have the reduction on it
/// </summary>
public void ApplyReduction()
{
}
}
}