using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace SampleMvcEntity.Controllers
{
[HandleError]
public class HomeController : Controller
{
public ActionResult Index()
{
ViewData["Message"] = "Hoşgeldin MVC & ORM";
return View();
}
public ActionResult About()
{
ViewData["Message"] = "Hakkında MVC & ORM";
return View("Index");
}
}
}
Dosyayı İndir