using Npgsql; using SewerStammGen.Shared.Contracts; using SewerStammGen.Shared.Domain; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SewerStammGen.DAL.Services { public class SchachtDataService : PostgresqlDataService, ISchachtDataService { public SchachtDataService() : base("public.\"Schaechte\"") { } public Task Create(Schacht entity) { throw new NotImplementedException(); } public Task Get(int id) { throw new NotImplementedException(); } public Task> GetAll() { throw new NotImplementedException(); } private Schacht parseSchacht(NpgsqlDataReader? reader) { throw new NotImplementedException(); } public Task> GetAllByProjekt(int projektID) { throw new NotImplementedException(); } public async Task> GetAllByProjekt(Projekt projekt) { return await GetAllByProjekt(projekt.Id); } public Task Update(Schacht entity) { throw new NotImplementedException(); } } }