Exemple #1
0
        public ThreadsController(IThreadsManagementService threadsManagementService,
                                 ILogger <ThreadsController> logger)
        {
            _threadsManagementService = threadsManagementService;

            _logger = logger;
        }
Exemple #2
0
 public ThreadsController(IThreadsManagementService threadsManagementService)
 {
     _threadsManagementService = threadsManagementService;
 }
 public HomeController(IUserProfileService userProfileService, IThreadsManagementService threadsManagementService)
 {
     _userProfileService       = userProfileService;
     _threadsManagementService = threadsManagementService;
 }