public bool DeleteEmployeeRole(int employeeID, string roleID)
        {
            bool result = false;

            try
            {
                result = _userAccessor.DeleteEmployeeRole(employeeID, roleID);
            }
            catch (Exception ex)
            {
                throw new ApplicationException("Employee Role Could Not Be fffffffgggggggggggggggggggDeleted", ex);
            }

            return(result);
        }