public CommentService(IQuestionStore store, IUserStore userStore)
 {
     _store     = store;
     _userStore = userStore;
 }
 public AnswerService(IQuestionStore store)
 {
     _store = store;
 }
 public QuestionController(IQuestionStore questionStore, ISurveyStore surveyStore, IAuthorizationService authorizationService)
 {
     _surveyStore = surveyStore;
     _authorizationService = authorizationService;
     _questionStore = questionStore;
 }
 public QuestionController(IQuestionStore questionStore, ISurveyStore surveyStore, IAuthorizationService authorizationService)
 {
     _surveyStore          = surveyStore;
     _authorizationService = authorizationService;
     _questionStore        = questionStore;
 }
Example #5
0
 public QuestionService(IQuestionStore Store, IUserStore userStore)
 {
     _store     = Store;
     _userStore = userStore;
 }