/// <summary>
 /// Applies the current <see cref="SortDescriptions"/> to the wrapped view
 /// </summary>
 private void SyncToCurrentSortDescriptions()
 {
     DomainCollectionView.CopySortDescriptions(this.SortDescriptions, base.SortDescriptions);
 }
 /// <summary>
 /// Applies the wrapped view descriptions to the <see cref="SortDescriptions"/>
 /// </summary>
 private void SyncToWrappedSortDescriptions()
 {
     DomainCollectionView.CopySortDescriptions(base.SortDescriptions, this.SortDescriptions);
 }