Schnittstelle um logging erweitert

This commit is contained in:
2023-06-27 12:41:47 +02:00
parent b22b9855fa
commit 8b5d706db4
10 changed files with 43 additions and 19 deletions

View File

@@ -1,4 +1,5 @@
using SewerStammGen.Shared.Domain;
using SewerStammGen.Shared.Contracts;
using SewerStammGen.Shared.Domain;
using SewerStammGen.Shared.Enum;
using System;
using System.Collections.Generic;
@@ -10,6 +11,6 @@ namespace Shared.Contracts
{
public interface IExport
{
Task<bool> Export(string projektname,EKodierungssystem kodierungssystem,List<Kanal> haltungen, List<Schacht> schaechte);
Task<bool> Export(string projektname,EKodierungssystem kodierungssystem,List<Kanal> haltungen, List<Schacht> schaechte, IWWLog log);
}
}

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SewerStammGen.Shared.Contracts
{
public interface IWWLog
{
void Log(string message);
}
}