Example #1
0
 public Vote(VoteValue voteValue, LunchSelection selection)
 {
     this.value = voteValue;
     this.selection = selection;
 }
Example #2
0
 public Review(Vote vote, Question question, LunchSelection selection)
 {
     this.vote = vote;
     this.question = question;
     this.selection = selection;
 }