public static string Checkout(int userId)
        {
            string response = "";

            if (CartHandler.Checkout(userId))
            {
                response = "";
            }
            else
            {
                response = "You haven't ordered anything";
            }

            return(response);
        }