// Get Employee/Index to get all employees
        public IActionResult Index()
        {
            List <Employee> employee = _employee.GetAllEmployee();

            return(View(employee));
        }