public void Aggregate(IPaginatedResponse other)
        {
            var otherTyped = ( OrderList )other;

            if (otherTyped != null)
            {
                if (otherTyped.Sale != null)
                {
                    Sale = Sale.Concat(otherTyped.Sale).ToArray();
                }
            }
        }