public ActionResult TestController(ForTest textBoxHell)
 {
     textBoxHell.OperationWithString();
     return View(textBoxHell);
 }
 public ActionResult TestController()
 {
     ForTest foreTest = new ForTest();
     foreTest.StringResultForTest = "some test";
     return View(foreTest);
 }