BinaryStudio.TaskManager.Web.Controllers.EventsController.EventsController C# (CSharp) Method

EventsController() public method

public EventsController ( IUserProcessor userProcessor, INewsRepository newsRepository, INotifier notifier, IProjectProcessor projectProcessor ) : System
userProcessor IUserProcessor
newsRepository INewsRepository
notifier INotifier
projectProcessor IProjectProcessor
return System
        public EventsController(IUserProcessor userProcessor, INewsRepository newsRepository, INotifier notifier, IProjectProcessor projectProcessor)
        {
            this.userProcessor = userProcessor;
            this.newsRepository = newsRepository;
            this.notifier = notifier;
            this.projectProcessor = projectProcessor;
        }