public ActionResult DeleteLegalStatus(int?LegalStatID)
        {
            //Delete
            if (LegalStatID.HasValue)
            {
                bool deleted = appddservice.DeleteLegalStatus(LegalStatID.Value);
            }

            return(RedirectToAction("AppDropDowns"));
        }