예제 #1
0
 public Answer(Poll poll, Question question, string ip)
 {
     Poll     = poll;
     Question = question;
     Ip       = ip;
 }
예제 #2
0
파일: Question.cs 프로젝트: zholus/api-poll
 public Question(string title, Poll poll)
 {
     Title = title;
     Poll  = poll;
 }