// GET: Home
 public ActionResult Index()
 {
     BackServiceProxy proxy = new BackServiceProxy();
     var serviceResult = proxy.DoSomething(new SomeParameters { Parameter = 99 });
     return View(serviceResult);
 }