From cb6b2e52ebb516a270348b57da325ceb77c9a136 Mon Sep 17 00:00:00 2001 From: Mike Bridge Date: Mon, 4 Mar 2013 11:48:59 -0700 Subject: [PATCH] Added multiplication --- MvcApplication/Utils/Demo.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/MvcApplication/Utils/Demo.cs b/MvcApplication/Utils/Demo.cs index 61ba23b..8c7de7f 100644 --- a/MvcApplication/Utils/Demo.cs +++ b/MvcApplication/Utils/Demo.cs @@ -17,5 +17,10 @@ public int Subtract(int x, int y) return x - y; } + public int Multiply(int x, int y) + { + return x * y; + } + } }