Example #1
0
        public ActionResult SearchTheme(string theme)
        {
            Models.SearchThemeModel model = new Models.SearchThemeModel()
            {
                Blogs = BusinessManagement.Search.SearchByTheme(theme),
                Theme = theme
            };

            return View(model);
        }
Example #2
0
        public ActionResult SearchTheme(string theme)
        {
            Models.SearchThemeModel model = new Models.SearchThemeModel()
            {
                Blogs = BusinessManagement.Search.SearchByTheme(theme),
                Theme = theme
            };

            return(View(model));
        }