Esempio n. 1
0
        public ActionResult Edit(int id)
        {
            BugTrackerModel btm     = new BugTrackerModel();
            BugTracker      rettemp = btm.FindBugById(id);

            return(View(rettemp));
        }
Esempio n. 2
0
        public ActionResult Delete(int id)
        {
            BugTrackerModel btm    = new BugTrackerModel();
            BugTracker      retbug = btm.FindBugById(id);

            return(View(retbug));
        }