23 lines
732 B
C#
23 lines
732 B
C#
using StructureHelperCommon.Models.Sections;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelperCommon.Services.Sections
|
|
{
|
|
public static class CompressedMemberServices
|
|
{
|
|
public static void CopyProperties(ICompressedMember source, ICompressedMember target)
|
|
{
|
|
target.Buckling = source.Buckling;
|
|
target.GeometryLength = source.GeometryLength;
|
|
target.LengthFactorX = source.LengthFactorX;
|
|
target.DiagramFactorX = source.DiagramFactorX;
|
|
target.LengthFactorY = source.LengthFactorY;
|
|
target.DiagramFactorY = source.DiagramFactorY;
|
|
}
|
|
}
|
|
}
|