62 lines
2.7 KiB
C#
62 lines
2.7 KiB
C#
using StructureHelperCommon.Infrastructures.Interfaces;
|
|
using StructureHelperCommon.Models.WorkPlanes;
|
|
using StructureHelperCommon.Services;
|
|
using StructureHelperLogics.NdmCalculations.Primitives;
|
|
using StructureHelperLogics.NdmCalculations.Primitives.Logics;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelperLogics.Models.CrossSections
|
|
{
|
|
public class CrossSectionUpdateStrategy : IUpdateStrategy<ICrossSection>
|
|
{
|
|
private IUpdateStrategy<ICrossSectionRepository> repositoryUpdateStrategy;
|
|
private IUpdateStrategy<IWorkPlaneProperty> workPlaneUpdateStrategy;
|
|
|
|
public CrossSectionUpdateStrategy(IUpdateStrategy<ICrossSectionRepository> repositoryUpdateStrategy,
|
|
IUpdateStrategy<IWorkPlaneProperty> workPlaneUpdateStrategy)
|
|
{
|
|
this.repositoryUpdateStrategy = repositoryUpdateStrategy;
|
|
this.workPlaneUpdateStrategy = workPlaneUpdateStrategy;
|
|
}
|
|
|
|
public CrossSectionUpdateStrategy() { }
|
|
|
|
public void Update(ICrossSection targetObject, ICrossSection sourceObject)
|
|
{
|
|
CheckObject.IsNull(targetObject);
|
|
CheckObject.IsNull(sourceObject);
|
|
if (ReferenceEquals(targetObject, sourceObject)) { return; }
|
|
UpdateRepository(targetObject, sourceObject);
|
|
UpdateWorkPlane(targetObject, sourceObject);
|
|
}
|
|
|
|
private void UpdateWorkPlane(ICrossSection targetObject, ICrossSection sourceObject)
|
|
{
|
|
if (sourceObject.WorkPlaneProperty is null)
|
|
{
|
|
targetObject.WorkPlaneProperty = new WorkPlaneProperty(Guid.NewGuid());
|
|
return;
|
|
}
|
|
targetObject.WorkPlaneProperty ??= new WorkPlaneProperty(Guid.NewGuid());
|
|
workPlaneUpdateStrategy ??= new WorkPlanePropertyUpdateStrategy();
|
|
workPlaneUpdateStrategy.Update(targetObject.WorkPlaneProperty, sourceObject.WorkPlaneProperty);
|
|
}
|
|
|
|
private void UpdateRepository(ICrossSection targetObject, ICrossSection sourceObject)
|
|
{
|
|
CheckObject.IsNull(targetObject.SectionRepository);
|
|
CheckObject.IsNull(sourceObject.SectionRepository);
|
|
targetObject.SectionRepository.Calculators.Clear();
|
|
targetObject.SectionRepository.Primitives.Clear();
|
|
targetObject.SectionRepository.ForceActions.Clear();
|
|
targetObject.SectionRepository.HeadMaterials.Clear();
|
|
repositoryUpdateStrategy ??= new CrossSectionRepositoryUpdateStrategy();
|
|
repositoryUpdateStrategy.Update(targetObject.SectionRepository, sourceObject.SectionRepository);
|
|
}
|
|
}
|
|
}
|