public IActionResult DeleteConfirmed(int id)
 {
     _contactInfoService.DeleteContact(id);
     return(RedirectToAction(nameof(Index)));
 }