first working version of zugferd rest service

This commit is contained in:
Jonathan Jenne
2020-03-20 13:48:09 +01:00
parent 3d3a491744
commit 7b3dc1bf89
16 changed files with 336 additions and 111 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ZUGFeRDRESTService
{
public sealed class Logger
{
private static readonly Lazy<Logger> lazy = new Lazy<Logger>(() => new Logger());
public static Logger Instance { get { return lazy.Value; } }
private Logger()
{
}
}
}