コード例 #1
0
        public ActionResult Delete(int id, FormCollection collection)
        {
            try
            {
                PersonaComponent personaComponent = new PersonaComponent();
                personaComponent.Delete(id);
                // TODO: Add delete logic here

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