Exemplo n.º 1
0
        public ActionResult Index()
        {
            var styleFacade = new StyleFacade();
            var categories = styleFacade.GetAll();

            return View(categories);
        }
Exemplo n.º 2
0
        public ActionResult Style(int styleId)
        {
            var styleFacade = new StyleFacade();

            return View(styleFacade.Get(styleId));
        }