예제 #1
0
 public ActionResult Featured()
 {
     var model = new BrochureModel
                     {
                         Brochures = _brochureService.GetAll().OrderBy(x=>x.Ordinal).ToList()
                     };
     return View(model);
 }
예제 #2
0
 public ActionResult ManageBrochure()
 {
     var model = new BrochureModel
                     {
                         Brochures = _brochureService.GetAll().ToList(),
                         Photo = new UploadImageModel()
                     };
     return View(model);
 }