public bool AdjustQuantity(int newQuantity)
        {
            try
            {
                int result = 0;

                using (var cont = new healthychefEntities())
                {
                    result = cont.hcc_CartItem_AdjustQuantity(this.CartItemID, newQuantity);
                }

                if (result > 0)
                {
                    return(true);
                }
                else
                {
                    return(false);
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }