/// <summary>
 /// Applies the current <see cref="GroupDescriptions"/> to the wrapped view
 /// </summary>
 private void SyncToCurrentGroupDescriptions()
 {
     DomainCollectionView.CopyGroupDescriptions(this.GroupDescriptions, base.GroupDescriptions);
 }
 /// <summary>
 /// Applies the wrapped view descriptions to the <see cref="GroupDescriptions"/>
 /// </summary>
 private void SyncToWrappedGroupDescriptions()
 {
     DomainCollectionView.CopyGroupDescriptions(base.GroupDescriptions, this.GroupDescriptions);
 }