Add beam shear clone strategies
This commit is contained in:
@@ -9,14 +9,20 @@ using System.Windows.Media;
|
||||
|
||||
namespace StructureHelperLogics.Models.Analyses
|
||||
{
|
||||
/// <inheritdoc/>
|
||||
public class BeamShearAnalysis : IBeamShearAnalysis
|
||||
{
|
||||
|
||||
/// <inheritdoc/>
|
||||
public Guid Id { get; }
|
||||
/// <inheritdoc/>
|
||||
public string Name { get; set; } = string.Empty;
|
||||
/// <inheritdoc/>
|
||||
public string Tags { get; set; } = string.Empty;
|
||||
/// <inheritdoc/>
|
||||
public string Comment { get; set; } = string.Empty;
|
||||
/// <inheritdoc/>
|
||||
public Color Color { get; set; } = Color.FromRgb(128, 0, 0);
|
||||
/// <inheritdoc/>
|
||||
public IVersionProcessor VersionProcessor { get; set; } = new VersionProcessor();
|
||||
public BeamShearAnalysis(Guid id)
|
||||
{
|
||||
|
||||
@@ -3,12 +3,6 @@ using StructureHelperCommon.Infrastructures.Interfaces;
|
||||
using StructureHelperCommon.Models.Analyses;
|
||||
using StructureHelperCommon.Services;
|
||||
using StructureHelperLogics.Models.BeamShears;
|
||||
using StructureHelperLogics.Models.CrossSections;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StructureHelperLogics.Models.Analyses
|
||||
{
|
||||
|
||||
@@ -7,6 +7,9 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace StructureHelperLogics.Models.Analyses
|
||||
{
|
||||
/// <summary>
|
||||
/// Implemants properties for analysis of beam for shear
|
||||
/// </summary>
|
||||
public interface IBeamShearAnalysis : IAnalysis
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user