コード例 #1
0
        public ActionResult DeleteEventTypeList(int?EventTypeID)
        {
            //Delete
            if (EventTypeID.HasValue)
            {
                bool deleted = appddservice.DeleteEventTypeList(EventTypeID.Value);
            }

            return(RedirectToAction("AppDropDowns"));
        }