CapRaffle.Domain.Raffle.DrawWinners.DrawWinners C# (CSharp) Method

DrawWinners() public method

public DrawWinners ( int eventId, CapRaffleContext context ) : System
eventId int
context CapRaffle.Domain.Model.CapRaffleContext
return System
        public DrawWinners(int eventId, CapRaffleContext context)
        {
            this.context = context;
            this.eventId = eventId;
            ApplyRules = true;
            UserTicketsList = new List<UserTickets>();
        }