CapRaffle.Domain.Raffle.StandardRules.StandardRules C# (CSharp) 메소드

StandardRules() 공개 메소드

public StandardRules ( int eventId ) : System
eventId int
리턴 System
        public StandardRules(int eventId)
        {
            this.eventId = eventId;
            categoryId = context.Events.FirstOrDefault(x => x.EventId == eventId).CategoryId;
        }