Example #1
0
        public ViewResult Index()
        {
            // This is the response which you reply against the request
            var model = _employeerepositry.GetAllEmployee();

            return(View(model));
        }