/**
         * For the Sample
         * @param pSc For the Sample
         * @param pInventory For the Sample
         * @param pItem For the Sample
         */
        public static void addShoppingCartItem(ShoppingCart pSc, Inventory pInventory, Item pItem)
        {
            try
            {
                Thread.Sleep(TEMPO);
            }
            catch (ThreadInterruptedException e)
            {
                // @todo Auto-generated catch block
                e.StackTrace.ToString();
            }
            pInventory.removeItem(pItem);

            pSc.addItem(pItem);
        }