protected void TransformerClassGenerationEventHandler(object sender, ClassGenerationEventArgs e)
        {
            FilesLiteral.Text = @"
<div style=""font-family:Courier New; font-size:10pt;"">
<br/>
Base Path: " + e.BasePath + @"
<br/>
CodeFile: " + e.CodeFile;
            if (e.HasError)
            {
                FilesLiteral.Text += "<br>Failed To create Pivot class";
            }
            FilesLiteral.Text += "</div>";
        }
 private void TransformerClassGenerationEventHandler(object sender, ClassGenerationEventArgs e)
 {
     //	throw new NotImplementedException();
 }
 protected void TransformerClassGenerationEventHandler(object sender, ClassGenerationEventArgs e)
 {
 }
 private void FilesCreated(object sender, ClassGenerationEventArgs e)
 {
     Assert.IsTrue(!e.HasError);
 }