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

            return(RedirectToAction("AppDropDowns"));
        }