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

ProjectController() public method

Initializes a new instance of the ProjectController class.
public ProjectController ( ITaskProcessor taskProcessor, IUserProcessor userProcessor, IProjectProcessor projectProcessor, INotifier notifier, INewsProcessor newsProcessor, IStringExtensions stringExtensions, IReminderProcessor reminderProcessor ) : System
taskProcessor ITaskProcessor /// The task processor. ///
userProcessor IUserProcessor /// The user processor. ///
projectProcessor IProjectProcessor /// The project processor. ///
notifier INotifier /// The notifier. ///
newsProcessor INewsProcessor /// The news processor. ///
stringExtensions IStringExtensions /// The string extensions. ///
reminderProcessor IReminderProcessor /// The reminder processor. ///
return System
        public ProjectController(ITaskProcessor taskProcessor, IUserProcessor userProcessor, IProjectProcessor projectProcessor, 
            INotifier notifier, INewsProcessor newsProcessor, IStringExtensions stringExtensions, IReminderProcessor reminderProcessor)
        {
            this.projectProcessor = projectProcessor;
            this.notifier = notifier;
            this.taskProcessor = taskProcessor;
            this.userProcessor = userProcessor;
            this.newsProcessor = newsProcessor;
            this.stringExtensions = stringExtensions;
            this.reminderProcessor = reminderProcessor;
        }