public bool Save(OnlineTest onlineTest) { OnlineTestRepository.Save(onlineTest); foreach (var question in onlineTest.Questions) { QuestionRepository.Create(question); } return(true); }
public IEnumerable <OnlineTest> GetAll() { return(OnlineTestRepository.GetAll()); }