Change shear calculator add crack export to excel

This commit is contained in:
Evgeny Redikultsev
2025-06-21 21:34:20 +05:00
parent 4fbb3f3658
commit 1ebe1bbcd1
47 changed files with 980 additions and 378 deletions

View File

@@ -0,0 +1,16 @@
using StructureHelperCommon.Infrastructures.Interfaces;
namespace StructureHelperLogics.Models.BeamShears
{
/// <summary>
/// Implements logic for obtaining of inclined section
/// </summary>
public interface IGetInclinedSectionLogic : ILogic
{
/// <summary>
/// Returns inclined section
/// </summary>
/// <returns>Inclined section</returns>
IInclinedSection GetInclinedSection();
}
}