예제 #1
0
 // GET: Profesori/Delete/5
 public ActionResult Delete(int id)
 {
     return(View(ProfesoratDAL.Read(id)));
 }
예제 #2
0
        // GET: Profesori/Details/5
        public ActionResult Details(int id)
        {
            Profesori profesori = ProfesoratDAL.Read(id);

            return(View("Details", profesori));
        }