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; + } + } }