コード例 #1
0
ファイル: CategoryController.cs プロジェクト: xxy1991/cozy
        public ActionResult Create(Category category)
        {
            try
            {
                if (ModelState.IsValid)
                {
                    UnitOfWork_.CategoryRepo.AddCategory(category);
                    UnitOfWork_.CategoryRepo.Save();
                    return RedirectToAction("Index");
                }

                return View();
            }
            catch
            {
                return View();
            }
        }
コード例 #2
0
ファイル: CategoryRepository.cs プロジェクト: xxy1991/cozy
 public void AddCategory(Category category)
 {
     entities.Category.Add(category);
 }