Example #1
0
        public ActionResult Edit(int id)
        {
            TemasBLL oBLL = new TemasBLL();
            Tema     tema = oBLL.Retrieve(id);

            return(View(tema));
        }
Example #2
0
        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);
        }