public IActionResult Delete(int id)
 {
     _service.DeletePersonnel(id);
     return(RedirectToAction("Index"));
 }