public IActionResult Delete(int id)
 {
     Logica.BL.Projects projects = new Logica.BL.Projects();
     projects.DeleteProject(id);
     return(RedirectToAction("Index"));
 }