29 lines
1.0 KiB
C#
29 lines
1.0 KiB
C#
using StructureHelperCommon.Infrastructures.Interfaces;
|
|
using StructureHelperCommon.Models.Forces;
|
|
using StructureHelperCommon.Services;
|
|
|
|
namespace DataAccess.DTOs
|
|
{
|
|
public class HasForceActionsFromDTOUpdateStrategy : IUpdateStrategy<IHasForceActions>
|
|
{
|
|
private readonly IConvertStrategy<IForceAction, IForceAction> convertStrategy;
|
|
|
|
public HasForceActionsFromDTOUpdateStrategy(IConvertStrategy<IForceAction, IForceAction> convertStrategy)
|
|
{
|
|
this.convertStrategy = convertStrategy;
|
|
}
|
|
|
|
public void Update(IHasForceActions targetObject, IHasForceActions sourceObject)
|
|
{
|
|
CheckObject.ThrowIfNull(targetObject, sourceObject);
|
|
if (ReferenceEquals(targetObject, sourceObject)) { return; }
|
|
targetObject.ForceActions.Clear();
|
|
foreach (var item in sourceObject.ForceActions)
|
|
{
|
|
var newItem = convertStrategy.Convert(item);
|
|
targetObject.ForceActions.Add(newItem);
|
|
}
|
|
}
|
|
}
|
|
}
|