/// <summary>
 /// Called by the server-side DataPortal after calling the requested DataPortal_XYZ method.
 /// </summary>
 /// <param name="e">The DataPortalContext object passed to the DataPortal.</param>
 protected override void DataPortal_OnDataPortalInvokeComplete(Csla.DataPortalEventArgs e)
 {
     if (ApplicationContext.ExecutionLocation == ApplicationContext.ExecutionLocations.Server &&
         e.Operation == DataPortalOperations.Update)
     {
         // this runs on the server
         DocClassList.InvalidateCache();
         DocClassNVL.InvalidateCache();
     }
 }
 private void OnDocClassEditSaved(object sender, Csla.Core.SavedEventArgs e)
 {
     // this runs on the client
     DocClassList.InvalidateCache();
     DocClassNVL.InvalidateCache();
 }