Haltungübersicht angefangen

This commit is contained in:
2023-04-03 11:17:29 +02:00
parent d4b38ff7ae
commit 7999b7ffd0
33 changed files with 697 additions and 429 deletions

View File

@@ -0,0 +1,15 @@
using Shared.Contracts;
using Shared.Domain;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SewerStammGen.Shared.Contracts
{
public interface IHaltungDataService : IDataService<Kanal>
{
Task<IEnumerable<Kanal>> GetAll(int projektID);
}
}

View File

@@ -14,6 +14,7 @@ namespace Shared.Domain
public int DN { get; set; }
public string? Material { get; set; }
public decimal Haltungslaenge { get; set; }
public virtual Projekt? Projekt { get; set; }
public EEntwaeserung Entwaesserung { get; set; }
}