public TicketEntry(PowerBallTicket ticket, int one, int two, int three, int four, int five, int six, bool winner) { m_Ticket = ticket; m_One = one; m_Two = two; m_Three = three; m_Four = four; m_Five = five; m_PowerBall = six; m_Winner = winner; m_Ticket.AddEntry(this); }
public TicketEntry(PowerBallTicket ticket, int one, int two, int three, int four, int five, bool winner) : this(ticket, one, two, three, four, five, 0, winner) { }