GetRulesForEvent() 공개 메소드

public GetRulesForEvent ( int eventId ) : List
eventId int
리턴 List
예제 #1
0
 private void ApplyRulesForEvent()
 {
     if (ApplyRules)
     {
         var repository = new DrawingRepository();
         List<RuleParameter> rules = repository.GetRulesForEvent(eventId);
         foreach (RuleParameter rp in rules)
         {
             InvokeRuleMethod(rp);
         }
     }
 }