25 lines
668 B
C#
25 lines
668 B
C#
using StructureHelperCommon.Infrastructures.Enums;
|
|
using StructureHelperCommon.Models.Codes;
|
|
using System;
|
|
|
|
namespace StructureHelperCommon.Models.Materials.Libraries
|
|
{
|
|
public class ReinforcementMaterialEntity : IReinforcementMaterialEntity
|
|
{
|
|
public Guid Id { get; }
|
|
public CodeTypes CodeType { get; set; }
|
|
public ICodeEntity Code { get; set; }
|
|
public string Name { get; set; }
|
|
public double MainStrength { get; set; }
|
|
|
|
public ReinforcementMaterialEntity(Guid id)
|
|
{
|
|
Id = id;
|
|
}
|
|
public void Save()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|