Esempio n. 1
0
        public virtual void AddChoice(ChoiceRow choice)
        {
            if (choice == null)
            {
                throw new ArgumentNullException(nameof(choice));
            }

            this.choices[choice.Id] = choice;
        }
Esempio n. 2
0
 public static bool IsNullOrNone(this ChoiceRow self)
 => self == null || self == ChoiceRow.None;
Esempio n. 3
0
 public sealed override void AddChoice(ChoiceRow option)
 {
 }