예제 #1
0
 public IActionResult Pythagorean(Pythagorean model)
 {
     model.OutputC = _calculateService.CalculatePythagoreanTheorem(model);
     return(View(model));
 }