9 lines
258 B
C#
9 lines
258 B
C#
using StructureHelperCommon.Infrastructures.Interfaces;
|
|
|
|
namespace StructureHelperLogics.Models.BeamShears
|
|
{
|
|
public interface IGetSectionLogicFactory : ILogic
|
|
{
|
|
IBeamShearSectionLogic GetSectionLogic(ShearCodeTypes shearCodeTypes);
|
|
}
|
|
} |