コード例 #1
0
 public QuestionForTestEntity(int questionId, TestEntity test)
 {
     QuestionId = questionId;
     Test       = test;
 }
コード例 #2
0
 public TestForGameEntity(TestEntity test, GameEntity game)
 {
     Test = test;
     Game = game;
 }
コード例 #3
0
 public QuestionForTestEntity(QuestionEntity question, TestEntity test)
 {
     Question = question;
     Test     = test;
 }