Exemplo n.º 1
0
        public ActionResult Index()
        {
            var list = new TenisDB().Select();

            return(View(list));
        }
Exemplo n.º 2
0
        public ActionResult Delete(int id)
        {
            var tenis = new TenisDB().SelectById(id);

            return(View(tenis));
        }