Files
StructureHelper/StructureHelperCommon/Models/Materials/Libraries/Factories/SteelFactorsFactory.cs
2025-12-20 21:32:02 +05:00

27 lines
783 B
C#

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();
}
}
}