public ActionResult Edit(int id) { TemasBLL oBLL = new TemasBLL(); Tema tema = oBLL.Retrieve(id); return(View(tema)); }
public ActionResult Details(int id) { TemasBLL oBLL = new TemasBLL(); Tema tema = oBLL.Retrieve(id); return View(tema); }
public string GetTema(int id) { TemasBLL mBLL = new TemasBLL(); Tema tema = mBLL.Retrieve(id); var name = tema.NombreTema; return(name); }