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,32 @@
namespace dcnsanplanung.bewertung.M149_3
{
public class BBD : AbstractCode
{
public BBD() : base("Eindringen von Bodenmaterial")
{
}
public override int CalculateDK()
{
return 1;
}
public override int CalculateSK()
{
return 0;
}
public override int CalculateBK()
{
switch(Q1)
{
case >= 30: return 0;
case >= 20: return 1;
case >= 10: return 2;
default: return 3;
}
}
}
}