This file contains 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
using QuestPDF.Elements; | |
using QuestPDF.Fluent; | |
using QuestPDF.Helpers; | |
using QuestPDF.Infrastructure; | |
using QuestPDF.Previewer; | |
using SkiaSharp; | |
Document.Create(doc => | |
{ | |
doc.Page(page => |
This file contains 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
using QuestPDF.Elements; | |
using QuestPDF.Fluent; | |
using QuestPDF.Helpers; | |
using QuestPDF.Infrastructure; | |
public class OrderItem | |
{ | |
public string ItemName { get; set; } = Placeholders.Sentence(); | |
public int Price { get; set; } = Placeholders.Random.Next(1, 11) * 10; | |
public int Count { get; set; } = Placeholders.Random.Next(1, 11); |
NewerOlder