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

ReminderController() public method

Initializes a new instance of the ReminderController class.
public ReminderController ( IReminderRepository reminderRepository, IUserRepository userRepository, ITaskProcessor taskProcessor, IReminderProcessor reminderProcessor ) : System
reminderRepository IReminderRepository /// The reminder repository. ///
userRepository IUserRepository /// The user repository. ///
taskProcessor ITaskProcessor /// The task processor. ///
reminderProcessor IReminderProcessor
return System
        public ReminderController(
            IReminderRepository reminderRepository,
            IUserRepository userRepository,
            ITaskProcessor taskProcessor,
            IReminderProcessor reminderProcessor)
        {
            this.reminderRepository = reminderRepository;
            this.userRepository = userRepository;
            this.taskProcessor = taskProcessor;
            this.reminderProcessor = reminderProcessor;
        }
        [Authorize]