예제 #1
0
 public void SaveTest(string theme, string author, IList <Question> questions)
 {
     _testsRepo.SaveTest(new Test
     {
         Version  = 1,
         Id       = Guid.NewGuid(),
         Theme    = theme,
         Author   = author,
         Question = questions.ToList()
     });
 }