Ejemplo n.º 1
0
        //Photos/Details/5
        public IActionResult Details(int id)
        {
            //get the model
            Photo photo = repository.GetSinglePhoto(id);

            //return the view with the model in it
            return(View(photo));
        }
Ejemplo n.º 2
0
 public void OnGet(int id)
 {
     //get the model
     Photo = repository.GetSinglePhoto(id);
     //return the view with the model in it
 }