public RequestQueueForm(QueueForm queueForm, TicketQueue ticketQueue) { InitializeComponent(); this.ticketQueue = ticketQueue; this.btnGetNextTicket.Enabled = true; this.btnHandleIt.Enabled = false; }
public QueueForm(TicketQueue ticketQueue) { InitializeComponent(); this.ticketQueue = ticketQueue; }
public QueueForm() { InitializeComponent(); this.ticketQueue = new TicketQueue(); }