Beispiel #1
0
        public ActionResult CreateCategoryInfo(CategoryInfo newCategoryInfo)
        {
            try
            {
                _categoryInfoDomainService.CreateCategoryInfo(newCategoryInfo);

                return(RedirectToAction("Index"));
            }
            catch
            {
                return(View());
            }
        }