ProtokollWriterContract hinzugefügt

This commit is contained in:
HuskyTeufel
2021-02-23 15:11:29 +01:00
parent 75b9df14ee
commit 48d7f66a55
8 changed files with 94 additions and 1 deletions

View File

@@ -1,12 +1,18 @@
using System;
using System.Diagnostics;
using DataGen;
using DPGetDataContract;
namespace ConsoleApplication
{
class Program
{
static void Main(string[] args)
{
IDPGetDataContract eingabe = new ProtokollWriter();
(eingabe as ProtokollWriter).GenerateUnterdruck(DateTime.Now,-100);
Debugger.Break();
Console.WriteLine("Hello World!");
}
}