Esempio n. 1
0
 public UploadUserProfilePictureModel(IQuestionCommands questionCommands)
 {
     _questionCommands = questionCommands;
 }
Esempio n. 2
0
 public QuestionsController(IQuestionCommands questionCommands, IAnswersCommand answersCommand)
 {
     _questionCommands = questionCommands;
     _answersCommand   = answersCommand;
 }
Esempio n. 3
0
 public AnswersController(IAnswersCommand answersCommand, IQuestionCommands questionCommands, IRequestUserProvider requestUserProvider)
 {
     _answersCommand      = answersCommand;
     _questionCommands    = questionCommands;
     _requestUserProvider = requestUserProvider;
 }