/// <summary>
        /// Remove active order from collection by Id
        /// </summary>
        private void RemoveActiveOrder(int orderId)
        {
            if (ActiveDataCollection != null && ActiveDataCollection.Count > 0)
            {
                var items = ActiveDataCollection.Where(x => x.MasterNumber == orderId).ToList();
                if (items != null)
                {
                    foreach (var i in items)
                    {
                        ActiveDataCollection.Remove(i);
                    }

                    UpdateDisplayDataCollection();
                }
            }
        }