Beispiel #1
0
        public ActionResult AddCategory(PostData category)
        {
            var new_category = new CategoryData()
            {
                Title = category.Title
            };

            _forum.AddCategory(new_category);

            return(RedirectToAction("Index", "Topic"));
        }