Klassifizierungssystem hinzugefügt

This commit is contained in:
2023-09-13 12:56:39 +02:00
parent 49ab3598d7
commit bfa77de720
42 changed files with 886 additions and 112 deletions

View File

@@ -0,0 +1,20 @@
namespace dcnsanplanung.bewertung.M149_3
{
public class BDE : AbstractCode
{
public BDE() : base("Zufluss aus einem Anschluss")
{
}
public override int CalculateBK()
{
switch(Ch2)
{
case "A": return 1;
default: return 2;
}
}
}
}