Automatically update creation and modification date
[wsti_pai.git] / Projects / Controllers / HomeController.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Web;
5 using System.Web.Mvc;
6
7 namespace Projects.Controllers
8 {
9     public class HomeController : Controller
10     {
11         public ActionResult Index()
12         {
13             return View();
14         }
15
16         public ActionResult Contact()
17         {
18             ViewBag.Message = "Your contact page.";
19
20             return View();
21         }
22     }
23 }