From 1894b68c5abcff7fd754ad96abeff4e28a2604b0 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Tue, 23 Aug 2022 16:34:55 -0400 Subject: [PATCH] removed imports --- DAL/PdfDataService.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/DAL/PdfDataService.cs b/DAL/PdfDataService.cs index f195197..0d2fa64 100644 --- a/DAL/PdfDataService.cs +++ b/DAL/PdfDataService.cs @@ -1,8 +1,5 @@ -using PdfSharpCore; using PdfSharpCore.Drawing; using PdfSharpCore.Pdf; -using PdfSharpCore.Pdf.IO; -using Pastel; public class PdfDataService : IDataService { @@ -38,7 +35,7 @@ public class PdfDataService : IDataService foreach (var i in sortedResults) { gfx.DrawString($"{i.Key}: {i.Value}", fontDetails, XBrushes.Black, new XRect(0, positionValue, page.Width, page.Width), XStringFormats.TopCenter); - positionValue += 30; + positionValue += 25; } document.Save(_fileName);