BgEngine.Controllers.ImageController.Index C# (CSharp) Method

Index() private method

private Index ( int id ) : System.Web.Mvc.ViewResult
id int
return System.Web.Mvc.ViewResult
        public ViewResult Index(int? id)
        {
            Album album = AlbumServices.FindEntityByIdentity(id);
            if (album == null)
            {
                return new NotFoundMvc.NotFoundViewResult();
            }
            else
            {
                return View(album);
            }
        }