11 lines
459 B
C#
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");
|
|
} |