Add steel material saving

This commit is contained in:
Evgeny Redikultsev
2025-12-20 21:32:02 +05:00
parent 68b15682bb
commit 7e82e5ee9d
47 changed files with 1160 additions and 381 deletions

View File

@@ -0,0 +1,26 @@
using StructureHelperCommon.Infrastructures.Enums;
using StructureHelperCommon.Infrastructures.Exceptions;
using System;
using System.Collections.Generic;
using System.Text;
namespace StructureHelperCommon.Models.Materials.Libraries.Factories
{
public enum SteelFactorTypes
{
WorkCondition = 0,
}
public class SteelFactorsFactory
{
public static IMaterialSafetyFactor GetFactor(SteelFactorTypes factorType)
{
if (factorType == SteelFactorTypes.WorkCondition) { return WorkCondition(); }
else throw new StructureHelperException(ErrorStrings.ObjectTypeIsUnknown);
}
private static IMaterialSafetyFactor WorkCondition()
{
throw new NotImplementedException();
}
}
}