public bool DeleteItemFromCheckout(int id)
        {
            var item = _checkoutRepo.GetCheckoutItem(id); // Get the item by Id from repository

            return(_checkoutRepo.DeleteItem(item));
        }