Testdateien hinzugefügt.

Schächte werden Importiert
This commit is contained in:
2023-04-18 21:06:28 +02:00
parent a854d7e8f1
commit 455d23e3ad
23 changed files with 356 additions and 21 deletions

View File

@@ -1,4 +1,5 @@
using System;
using SewerStammGen.Shared.Domain;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
@@ -6,8 +7,8 @@ using System.Threading.Tasks;
namespace Shared.Contracts
{
internal interface IImport
public interface IImport
{
List<Schacht> LoadSchaechte(string filename, EEntwaeserung entwaeserung);
}
}

View File

@@ -13,5 +13,6 @@ namespace SewerStammGen.Shared.Contracts
{
Task<IEnumerable<Schacht>> GetAllByProjekt(int projektID);
Task<IEnumerable<Schacht>> GetAllByProjekt(Projekt projekt);
Task<bool> InsertSchachtBulk(List<Schacht> schacht);
}
}