private bool IsCategoryOwner(WebContentCategory category)
 {
     return category != null && this.CorePrincipal() != null && category.UserId != null &&
                      category.UserId == this.CorePrincipal().PrincipalId;
 }
 private bool IsCategoryOwner(WebContentCategory category)
 {
     return(category != null && this.CorePrincipal() != null && category.UserId != null &&
            category.UserId == this.CorePrincipal().PrincipalId);
 }