DRAB/Drab.Logic/Constants.cs
2025-07-11 10:50:46 +02:00

10 lines
442 B
C#

using System.Reflection;
using Drab.Logic.Services;
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");
}