// GET: Employees
        public ActionResult Index()
        {
            var employees = p_repo.GetEmployees().ToList();

            return(View(employees));
        }