public int AddRole(string roleName, string description, string strDomain, string parentId) { try { return(roleDAO.AddRole(roleName, description, strDomain, parentId)); } catch (Exception ex) { throw new Exception(ex.Message); } }