public ActionResult MakePayment(int customerId, int orderId, decimal amount, string note, string paymentMethod)
        {
            CakesPosRepository cpr = new CakesPosRepository(_connectionString);

            cpr.MakePayment(customerId, orderId, amount, note, paymentMethod);
            return(null);
        }