Beispiel #1
0
 public AnswersService(AnswersContext context)
 {
     Context = context;
 }
Beispiel #2
0
 public QuestionsController(AnswersContext context)
 {
     Service = new QuestionsService(context);
 }
 public ChooseBundleController(AnswersContext context)
 {
     _context = context;
 }
 public HomeController(AnswersContext context)
 {
     _service = new AnswersService(context);
 }
 public QuestionsService(AnswersContext context)
 {
     Context = context;
 }
Beispiel #6
0
 public AnswersController(AnswersContext answersContext)
 {
     _service = new AnswersService(answersContext);
 }