Пример #1
0
 public QuestionModel(UrlHelper urlHelper, Question question)
 {
     Url = urlHelper.Link("questions", new { id = question.Id});
     Id = question.Id;
     QuestionText = question.QuestionText;
     QuestionCategoryId = question.CategoryId;
     ImageBytes = question.Image;
     IsDeprecated = question.Deprecated;
 }
Пример #2
0
 public QuestionModel Create(Question question)
 {
     return new QuestionModel(_urlHelper, question);
 }