Add beam shear clone strategies
This commit is contained in:
@@ -19,6 +19,12 @@ namespace StructureHelperCommon.Infrastructures.Interfaces
|
||||
TraceLogger = traceLogger;
|
||||
}
|
||||
|
||||
protected ConvertStrategy(IConvertStrategy<ISaveable, ISaveable> convertStrategy)
|
||||
{
|
||||
ReferenceDictionary = convertStrategy.ReferenceDictionary;
|
||||
TraceLogger = convertStrategy.TraceLogger;
|
||||
}
|
||||
|
||||
public ConvertStrategy()
|
||||
{
|
||||
|
||||
|
||||
@@ -1,19 +1,21 @@
|
||||
using StructureHelperCommon.Infrastructures.Interfaces;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Media;
|
||||
|
||||
namespace StructureHelperCommon.Models.Analyses
|
||||
{
|
||||
/// <summary>
|
||||
/// Implements propertis of analysis
|
||||
/// </summary>
|
||||
public interface IAnalysis : ISaveable, ICloneable
|
||||
{
|
||||
string Name { get; set; }
|
||||
string Tags { get; set; }
|
||||
string Comment { get; set; }
|
||||
Color Color { get; set; }
|
||||
/// <summary>
|
||||
/// Processor of subversions of analysis
|
||||
/// </summary>
|
||||
IVersionProcessor VersionProcessor { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user