public IActionResult Delete(int id)
 {
     employees.DeleteEmployee(id);
     return(RedirectToAction(nameof(Index)));
 }