コード例 #1
0
        public ActionResult Create(ASF.Entities.Category category)
        {
            try
            {
                // TODO: Add insert logic here



                //var category = CustomConverterUtils.MapFormCollection<ASF.Entities.Category>(collection);

                categoryProcess.SaveCategory(category);

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