57 lines
2.2 KiB
C#
57 lines
2.2 KiB
C#
using StructureHelperCommon.Infrastructures.Interfaces;
|
|
using StructureHelperCommon.Models;
|
|
using StructureHelperCommon.Models.Forces;
|
|
using StructureHelperCommon.Models.Forces.Logics;
|
|
using StructureHelperCommon.Models.Loggers;
|
|
|
|
namespace DataAccess.DTOs
|
|
{
|
|
public class DesignForceTupleFromDTOConvertStrategy : ConvertStrategy<DesignForceTuple, DesignForceTupleDTO>
|
|
{
|
|
private IUpdateStrategy<IDesignForceTuple> updateStrategy;
|
|
private IConvertStrategy<ForceTuple, ForceTupleDTO> forceTupleConvertStrategy;
|
|
|
|
public DesignForceTupleFromDTOConvertStrategy(
|
|
IUpdateStrategy<IDesignForceTuple> updateStrategy,
|
|
IConvertStrategy<ForceTuple, ForceTupleDTO> forceTupleConvertStrategy)
|
|
{
|
|
this.updateStrategy = updateStrategy;
|
|
this.forceTupleConvertStrategy = forceTupleConvertStrategy;
|
|
}
|
|
|
|
public DesignForceTupleFromDTOConvertStrategy() : this(
|
|
new DesignForceTupleUpdateStrategy(),
|
|
new ForceTupleFromDTOConvertStrategy())
|
|
{
|
|
|
|
}
|
|
|
|
public override DesignForceTuple GetNewItem(DesignForceTupleDTO source)
|
|
{
|
|
TraceLogger?.AddMessage("Design force tuple converting has been started");
|
|
try
|
|
{
|
|
DesignForceTuple newItem = GetNewItemBySource(source);
|
|
TraceLogger?.AddMessage("Design force tuple converting has been finished");
|
|
return newItem;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
TraceErrorByEntity(this, ex.Message);
|
|
throw;
|
|
}
|
|
}
|
|
|
|
private DesignForceTuple GetNewItemBySource(DesignForceTupleDTO source)
|
|
{
|
|
DesignForceTuple newItem = new(source.Id);
|
|
updateStrategy.Update(newItem, source);
|
|
forceTupleConvertStrategy.ReferenceDictionary = ReferenceDictionary;
|
|
forceTupleConvertStrategy.TraceLogger = TraceLogger;
|
|
var convertLogic = new DictionaryConvertStrategy<ForceTuple, ForceTupleDTO>(this, forceTupleConvertStrategy);
|
|
newItem.ForceTuple = convertLogic.Convert((ForceTupleDTO)source.ForceTuple);
|
|
return newItem;
|
|
}
|
|
}
|
|
}
|