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

@@ -104,5 +104,14 @@ namespace SewerStammGen.DAL.Services.PostgresqlData
return entity;
}
public async Task<bool> InsertSchachtBulk(List<Schacht> schacht)
{
foreach(var item in schacht)
{
await Create(item);
}
return true;
}
}
}