11 lines
315 B
C#
11 lines
315 B
C#
namespace dcnsanplanung.bewertung.M149_3
|
|
{
|
|
public class BAD : AbstractCode
|
|
{
|
|
public BAD() : base("Defektes Mauerwerk", CalculateMethods.Dichtheit | CalculateMethods.Standsicherheit | CalculateMethods.Betriebsicherheit)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|