/// <summary>
 /// Handles the LearningModuleUpdated event of the lmIndex control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="MLifter.BusinessLayer.LearningModuleUpdatedEventArgs"/> instance containing the event data.</param>
 /// <remarks>Documented by Dev08, 2009-03-04</remarks>
 private void lmIndex_LearningModuleUpdated(object sender, LearningModuleUpdatedEventArgs e)
 {
     UpdateItem(e.Entry);
 }
 /// <summary>
 /// Raises the <see cref="E:LearningModuleUpdated"/> event.
 /// </summary>
 /// <param name="e">The <see cref="MLifter.BusinessLayer.LearningModuleUpdatedEventArgs"/> instance containing the event data.</param>
 /// <remarks>Documented by Dev05, 2009-03-10</remarks>
 protected virtual void OnLearningModuleUpdated(LearningModuleUpdatedEventArgs e)
 {
     if (LearningModuleUpdated != null)
         LearningModuleUpdated(this, e);
 }