21 lines
487 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
2021-06-10 16:15:36 +10:00
using FirstMVCDemo.Models;
namespace FirstMVCDemo.Controllers
{
public class HomeController : Controller
{
// GET: Home
2021-06-10 16:15:36 +10:00
public ActionResult Index(int id)
{
2021-06-10 16:15:36 +10:00
EmployeeBusinessLayer employeeBL = new EmployeeBusinessLayer();
Employee employee = employeeBL.GetEmployeeDetails(id);
return View();
}
}
}