public override ActionResult Index()
        {
            var viewModel = new SharedWebComponents.Models.TestViewModel("Hello from Web Project");

            return(PartialView("~/SharedWebComponents/Views/Test/Test.cshtml", viewModel));
        }
Exemple #2
0
 public TestViewModel(string greeting, string anotherGreeting)
 {
     Shared          = new SharedWebComponents.Models.TestViewModel(greeting);
     AnotherGreeting = anotherGreeting;
 }