コード例 #1
0
 public GameResult(ContestantScore first, ContestantScore second)
 {
     Guid = Guid.NewGuid();
     FirstContestantScore  = first;
     SecondContestantScore = second;
     DateTime = DateTime.Now;
 }
コード例 #2
0
 public GameResult(Guid guid,
                   ContestantScore firstContestantScore,
                   ContestantScore secondContestantScore,
                   DateTime dateTime)
 {
     Guid = guid;
     FirstContestantScore  = firstContestantScore;
     SecondContestantScore = secondContestantScore;
     DateTime = dateTime;
 }