Skip to content

Instantly share code, notes, and snippets.

@omeraydemir
Last active March 2, 2020 00:15
Show Gist options
  • Save omeraydemir/37f3716de33c74c76c0ca472de719b06 to your computer and use it in GitHub Desktop.
Save omeraydemir/37f3716de33c74c76c0ca472de719b06 to your computer and use it in GitHub Desktop.
public static void CreatePDFReportFile(string fileName)
{
document = new Document();
//Global de oluşturduğum document değişkenimi türetiyorum.
DataTable dataContent = GetInvoiceContent();
CreateSection(fileName, dataContent);
FillDataToContent(dataContent);
SavePdf(fileName);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment