/// <summary>
 /// Initializes a new instance of the <see cref="LayoutOperationGroup"/> class.
 /// </summary>
 /// <param name="operationList">List of operations belonging to this group.</param>
 /// <param name="refresh">Optional refresh operation to execute at the end of undo and redo.</param>
 public LayoutOperationGroup(LayoutOperationReadOnlyList operationList, LayoutGenericRefreshOperation refresh)
     : base(operationList, refresh)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="LayoutOperationGroup"/> class.
 /// </summary>
 /// <param name="operationList">List of operations belonging to this group.</param>
 /// <param name="refresh">Optional refresh operation to execute at the end of undo and redo.</param>
 protected LayoutOperationGroup(LayoutOperationList operationList, LayoutGenericRefreshOperation refresh)
     : base(operationList, refresh)
 {
 }