Logics of accidental eccentricity were separated and tested

This commit is contained in:
Evgeny Redikultsev
2024-03-10 19:20:01 +05:00
parent 0a453c5a95
commit b81b7a0929
30 changed files with 885 additions and 331 deletions

View File

@@ -0,0 +1,23 @@
using StructureHelperCommon.Models.Forces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Sections.Logics
{
public class ForceTupleCopier : IProcessorLogic<IForceTuple>
{
public IForceTuple InputForceTuple { get; set; }
public IShiftTraceLogger? TraceLogger { get; set; }
public ForceTupleCopier(IForceTuple forceTuple)
{
InputForceTuple = forceTuple;
}
public IForceTuple GetValue()
{
return InputForceTuple.Clone() as IForceTuple;
}
}
}