コード例 #1
0
        // GET: Ingredientes/Details/5
        public ActionResult Details(string PK, string RK)
        {
            System.Threading.Thread.Sleep(1000);
            var model = repo.LeerPorPKRK(PK, RK);

            if (model == null)
            {
                return(NotFound());
            }
            return(View(model));
        }