Klassifizierungssystem hinzugefügt
This commit is contained in:
@@ -2,20 +2,20 @@
|
||||
{
|
||||
public class BAC : AbstractCode
|
||||
{
|
||||
public BAC() : base("Rohrbruch", CalculateMethods.Dichtheit | CalculateMethods.Standsicherheit | CalculateMethods.Betriebsicherheit)
|
||||
public BAC() : base("Rohrbruch")
|
||||
{
|
||||
}
|
||||
|
||||
protected override int CalculateBK()
|
||||
public override int CalculateBK()
|
||||
{
|
||||
switch (Ch1)
|
||||
{
|
||||
case "A": return 7;
|
||||
case "C": return 0;
|
||||
}
|
||||
return 10;
|
||||
return 5;
|
||||
}
|
||||
protected override int CalculateSK()
|
||||
public override int CalculateSK()
|
||||
{
|
||||
switch(Ch1)
|
||||
{
|
||||
@@ -24,7 +24,7 @@
|
||||
default: return 0;
|
||||
}
|
||||
}
|
||||
protected override int CalculateDK()
|
||||
public override int CalculateDK()
|
||||
{
|
||||
switch (Ch1)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user