Ejemplo n.º 1
0
        //GET EMPLOYEE LIST
        public ActionResult DisplayListofEmployees()
        {
            List <UserVM> UserList = UserVM.Map(humanLg.DisplayEmployee());

            return(View(UserList));
        }