DRAB/Drab.Logic/Constants.cs
2025-07-11 00:18:14 +02:00

11 lines
459 B
C#

using Drab.Logic.Services;
using System.IO;
using System.Reflection;
namespace Drab.Logic;
internal static class Constants
{
internal static readonly string ReportsTemplatesPath = Path.Combine(Path.GetDirectoryName(Assembly.GetAssembly(typeof(OrderPdfGenerator)).Location), "Templates");
internal static readonly string ReportsOutputPath = Path.Combine(Path.GetDirectoryName(Assembly.GetAssembly(typeof(OrderPdfGenerator)).Location), "Orders");
}