Пример #1
0
 public ActionResult Delete(Projeto P)
 {
     CarregaLista();
     _ProjetoRep.Delete(ProjetoList.Where(X => X.ID == P.ID).First());
     return(RedirectToAction("Index"));
 }