예제 #1
0
        public IActionResult PokeballCatchModifierDetail(PokeballCatchModifierDetail pokeballCatchModifier)
        {
            this.dataService.DeletePokeballCatchModifierDetail(pokeballCatchModifier.Id);

            return(this.RedirectToAction("Pokeballs", "Admin"));
        }
예제 #2
0
        public IActionResult PokeballCatchModifierDetail(int id)
        {
            PokeballCatchModifierDetail model = this.dataService.GetPokeballCatchModifierDetail(id);

            return(this.View(model));
        }