BudgetAnalyser.LedgerBook.ReconciliationToDoListController.OnAddReminderCommandExecuted C# (CSharp) Method

OnAddReminderCommandExecuted() private method

private OnAddReminderCommandExecuted ( ) : void
return void
        private void OnAddReminderCommandExecuted()
        {
            AddingNewTask = false;
            Tasks.Add(new ToDoTask(NewTaskDescription, false, false));
            this.applicationDatabaseService.NotifyOfChange(ApplicationDataType.Tasks);
        }