コード例 #1
0
 public ActionResult Save(CardTypeFormViewModel cardTypeViewModel)
 {
     if (!ModelState.IsValid)
     {
         return(View("CardTypeForm", cardTypeViewModel));
     }
     //else check if it's a new card type
     if (cardTypeViewModel.CardType.Id == 0)
     {
         var cardType = cardTypeViewModel.CardType;
         _context.CardTypes.Add(cardType);
         _context.SaveChanges();
     }
     else
     {
         var cardTypeInDb = _context.CardTypes.Find(cardTypeViewModel.CardType.Id);
         if (cardTypeInDb == null)
         {
             return(HttpNotFound());
         }
         cardTypeInDb.Code = cardTypeViewModel.CardType.Code;
         cardTypeInDb.Name = cardTypeViewModel.CardType.Name;
         _context.SaveChanges();
     }
     return(RedirectToAction("Index"));
 }
コード例 #2
0
        public ActionResult New()
        {
            var cardType = new CardType
            {
                Id = 0
            };

            var cardTypeViewModel = new CardTypeFormViewModel
            {
                ActionIndicator = 1,
                CardType        = cardType
            };

            return(View("CardTypeForm", cardTypeViewModel));
        }
コード例 #3
0
        public ActionResult Edit(int id)
        {
            var cardTypeInDb = _context.CardTypes.Find(id);

            if (cardTypeInDb == null)
            {
                return(HttpNotFound());
            }

            var cardtypeViewModel = new CardTypeFormViewModel
            {
                ActionIndicator = 2,
                CardType        = cardTypeInDb
            };

            return(View("CardTypeForm", cardtypeViewModel));
        }