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