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

QuickTaskController() public method

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