public IActionResult Mult(int a, int b) { return(View("CalcView", new CalcViewModel { A = a, B = b, Result = _calc.Mult(a, b) })); }