Ejemplo n.º 1
0
 public CommonWidgetController(IUserQueryService userQueryService
                               , IBlogQueryService blogQueryService
                               , IProblemQueryService problemQueryService)
 {
     _userQueryService = userQueryService;
     _blogQueryService = blogQueryService;
     _problemQueryService = problemQueryService;
 }
Ejemplo n.º 2
0
 public ProblemController(
     IProblemQueryService problemQueryService,
     ICommentCommandService commentCommandService,
     IProblemCommandService problemCommandService,
     IAuthenticationService authenticationService)
 {
     _problemQueryService = problemQueryService;
     _commentCommandService = commentCommandService;
     _problemCommandService = problemCommandService;
     _authenticationService = authenticationService;
 }
Ejemplo n.º 3
0
 public BlogController(
     IProblemQueryService problemQueryService,
     ICommentCommandService commentCommandService,
     IProblemCommandService problemCommandService,
     IBlogQueryService blogQueryService,
     IBlogCommandService blogCommandService,
     IAuthenticationService authenticationService)
 {
     this._problemQueryService = problemQueryService;
     this._commentCommandService = commentCommandService;
     this._problemCommandService = problemCommandService;
     this._blogCommandService = blogCommandService;
     this._blogQueryService = blogQueryService;
     this._authenticationService = authenticationService;
 }