30 lines
1.0 KiB
C#
30 lines
1.0 KiB
C#
using StructureHelperCommon.Infrastructures.Interfaces;
|
|
using StructureHelperCommon.Services;
|
|
|
|
namespace StructureHelperLogics.Models.BeamShears
|
|
{
|
|
public class HasSectionsUpdateCloneStrategy : IUpdateStrategy<IHasBeamShearSections>
|
|
{
|
|
private readonly ICloningStrategy cloningStrategy;
|
|
|
|
public HasSectionsUpdateCloneStrategy(ICloningStrategy cloningStrategy)
|
|
{
|
|
this.cloningStrategy = cloningStrategy;
|
|
}
|
|
|
|
public void Update(IHasBeamShearSections targetObject, IHasBeamShearSections sourceObject)
|
|
{
|
|
CheckObject.ThrowIfNull(cloningStrategy);
|
|
CheckObject.ThrowIfNull(sourceObject);
|
|
CheckObject.ThrowIfNull(targetObject);
|
|
if (ReferenceEquals(targetObject, sourceObject)) { return; }
|
|
targetObject.Sections.Clear();
|
|
foreach (var item in sourceObject.Sections)
|
|
{
|
|
IBeamShearSection newSection = cloningStrategy.Clone(item);
|
|
targetObject.Sections.Add(newSection);
|
|
}
|
|
}
|
|
}
|
|
}
|