Create new Web Project

This commit is contained in:
Jonathan Jenne
2023-11-08 08:59:25 +01:00
parent d0a4249eb7
commit 2e148de18e
765 changed files with 173 additions and 12962 deletions

View File

@@ -1,18 +0,0 @@
using DigitalData.Modules.Logging;
namespace EnvelopeGenerator.Web.Services
{
public class BaseService
{
internal readonly LogConfig logConfig;
internal readonly IConfiguration config;
internal Logger logger;
public BaseService(IConfiguration Config, LoggingService Logging)
{
logConfig = Logging.LogConfig;
logger = Logging.LogConfig.GetLogger();
config = Config;
}
}
}