Exemplo n.º 1
0
 //
 // GET: /Lineup/
 public ActionResult Index()
 {
     LineUpVM luvm = new LineUpVM();
     return View(luvm);
 }
Exemplo n.º 2
0
 public ActionResult ChangeDate(DateTime day)
 {
     LineUpVM luvm = new LineUpVM(day);
     return View("Index",luvm);
 }