Beispiel #1
0
 // GET: Apps/Details/5
 public IActionResult Details(int?id)
 {
     if (id == null)
     {
         return(NotFound());
     }
     return(View(_appService.App(id.Value)));
 }