public ProblemController(ProblemAppService problemAppService, ArticleController articleController, NotificationSubscriptionManager notificationSubscriptionManager, NotificationPublisher notificationPublisher) { _problemAppService = problemAppService; _articleController = articleController; _notificationSubscriptionManager = notificationSubscriptionManager; _notificationPublisher = notificationPublisher; }
public UserController(UserAppService userAppService, FileAppService fileAppService, UserManager userManager, UserTypeAppService userTypeAppService, ProblemAppService problemAppService, CertificateAppService certificateAppService, ArticleAppService articleAppService, NotificationPublisher notificationPublisher) { _userAppService = userAppService; _fileAppService = fileAppService; _userManager = userManager; _userTypeAppService = userTypeAppService; _problemAppService = problemAppService; _certificateAppService = certificateAppService; _articleAppService = articleAppService; _notificationPublisher = notificationPublisher; }