using System.Collections.Generic;
using System.Diagnostics;
namespace HelloWorldMvcApp
public class HomeController : Controller
List<SampleViewModel> _db;
_db = new List<SampleViewModel>();
public ActionResult Index()
var helloWorld = new SampleViewModel();
helloWorld.DisplayText = "Hello World!";
var helloAgain = new SampleViewModel();
helloAgain.DisplayText = "Hello Again!";