Last active
March 2, 2020 00:15
-
-
Save omeraydemir/37f3716de33c74c76c0ca472de719b06 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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