Exemplo n.º 1
0
        public ViewResult List()
        {
            //* https://localhost:44341/home/list Step3 (Part 27) - View/Home/List.cshtml
            //* Create var model that get list of all employees - Step3 (Part 27) - step 4 is create view (Razor View) for List method in Views/Home
            var model = _employeeRepositry.GetAllEmployees();

            return(View(model));
        }