CapRaffle.Domain.Model.CapRaffleContext.AddToRules C# (CSharp) 메소드

AddToRules() 공개 메소드

Deprecated Method for adding a new object to the Rules EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
public AddToRules ( Rule rule ) : void
rule Rule
리턴 void
        public void AddToRules(Rule rule)
        {
            base.AddObject("Rules", rule);
        }