/// <summary>
        /// Called to handle the "add" action.
        /// </summary>
        /// <param name="addedItems"></param>
        /// <returns>True if items were added, false otherwise.</returns>
        protected override bool AddItems(out IList <PatientNoteCategorySummary> addedItems)
        {
            addedItems = new List <PatientNoteCategorySummary>();
            NoteCategoryEditorComponent  editor   = new NoteCategoryEditorComponent();
            ApplicationComponentExitCode exitCode = ApplicationComponent.LaunchAsDialog(
                this.Host.DesktopWindow, editor, SR.TitleAddNoteCategory);

            if (exitCode == ApplicationComponentExitCode.Accepted)
            {
                addedItems.Add(editor.NoteCategorySummary);
                return(true);
            }
            return(false);
        }
        /// <summary>
        /// Called to handle the "edit" action.
        /// </summary>
        /// <param name="items">A list of items to edit.</param>
        /// <param name="editedItems">The list of items that were edited.</param>
        /// <returns>True if items were edited, false otherwise.</returns>
        protected override bool EditItems(IList <PatientNoteCategorySummary> items, out IList <PatientNoteCategorySummary> editedItems)
        {
            editedItems = new List <PatientNoteCategorySummary>();
            PatientNoteCategorySummary item = CollectionUtils.FirstElement(items);

            NoteCategoryEditorComponent  editor   = new NoteCategoryEditorComponent(item.NoteCategoryRef);
            ApplicationComponentExitCode exitCode = ApplicationComponent.LaunchAsDialog(
                this.Host.DesktopWindow, editor, SR.TitleUpdateNoteCategory + " - " + item.Name);

            if (exitCode == ApplicationComponentExitCode.Accepted)
            {
                editedItems.Add(editor.NoteCategorySummary);
                return(true);
            }
            return(false);
        }