public ActionResult ApplyLeave()
        {
            var users = _hrService.ListAllEmployeeProfile();
            var user  = users.Where(t => t.RoleName == "ProjectManager").ToList();

            return(View(user));
        }
        public ActionResult Search()
        {
            var users = _hrService.ListAllEmployeeProfile();

            return(View(users));
        }
Beispiel #3
0
        public ActionResult Delete()
        {
            List <ApplicationUser> Users = _hrService.ListAllEmployeeProfile();

            return(View(Users));
        }