Exemplo n.º 1
0
 public ActionResult Index(Summator summator)
 {
     summator.Sum = summator.FirstNumber + summator.SecondNumber;
     return View(summator);
 }
Exemplo n.º 2
0
 public ActionResult Index()
 {
     Summator summator = new Summator();
     return View(summator);
 }