/// <summary>
        /// Creates BOL for passed list of  EDI.
        /// </summary>
        /// <param name="edId"></param>
        /// <remarks>
        /// </remarks>
        internal int CreateBol(int[] ediIdList, string custId)
        {
            int count = 0;

            CustomerOrderSummaryCache.Remove(custId);
            foreach (var edIId in ediIdList)
            {
                count += _repos.CreateBol(edIId);
            }
            return(count);
        }