private static string GetClassName(AttributeSyntax attributeNode)
 {
     var classNode = attributeNode.Ancestors().OfType<ClassDeclarationSyntax>().Single();
     return classNode.Identifier.Text;
 }