using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using AspMvcIntroduction.Models; namespace AspMvcIntroduction.Controllers { public class HomeController : Controller { // // GET: /Home/ public ActionResult Index() { ViewData["MyObject"] = "Nesnem"; return View(); } public ActionResult EmployeeView() { Employee employee = new Employee(101, "Zeki Müren", 3400); return View(employee); } } }Dosyayı İndir