Ejemplo n.º 1
0
        //GET CUSTOMER LIST
        public ActionResult DisplayListofCustomers() //In the creation of new accouts, hide position and let admin update that to create employees
        {
            List <UserVM> UserList = UserVM.Map(humanLg.DisplayCustomer());

            return(View(UserList));
        }