Esempio n. 1
0
        public ActionResult Create()
        {
            var model = new ActicleViewModel()
            {
                ParentCategory = db.Categories.Where(x => x.ParentId == null)
            };

            return(View(model));
        }
Esempio n. 2
0
        public ActionResult Update(int id, ActicleViewModel model)
        {
            var article = db.Articles.FirstOrDefault(x => x.Id == id);

            if (article != null)
            {
                if (ModelState.IsValid)
                {
                    service.Update(model.Article);
                    return(RedirectToAction("Index"));
                }
            }
            return(View(model));
        }
Esempio n. 3
0
        public ActionResult Create(ActicleViewModel model, FormCollection fc)

        {
            model.ParentCategory = cate.AllList();
            if (ModelState.IsValid)
            {
                model.Article.CreateBy = User.Identity.Name;
                var u = service.Create(model.Article);
                return(RedirectToAction("Index"));
            }

            model.ParentCategory = db.Categories.Where(c => c.ParentId == 0);

            return(View(model));
        }
Esempio n. 4
0
        public ActionResult Update(int id)
        {
            var article = db.Articles.FirstOrDefault(x => x.Id == id);

            if (article == null)
            {
                return(HttpNotFound());
            }
            var model = new ActicleViewModel
            {
                Article        = article,
                ParentCategory = db.Categories.Where(x => x.ParentId == null)
            };

            return(View(model));
        }