Example #1
0
 public static ChoiceModel Reduce(this FullChoiceModel from)
 {
     ChoiceModel to = new ChoiceModel();
     Reduce(from, to);
     return to;
 }
Example #2
0
 public static void Reduce(this FullChoiceModel from, ChoiceModel to)
 {
     to.ChoiceId = from.ChoiceId;
     to.Content = from.Content;
 }