Schnittstelle um logging erweitert
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
13
SewerStammGen.Shared/Contracts/IWWLog.cs
Normal file
13
SewerStammGen.Shared/Contracts/IWWLog.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user