Files
StructureHelper/StructureHelperLogics/Models/CrossSections/CrossSection.cs
2024-09-28 20:46:42 +05:00

31 lines
658 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.CrossSections
{
public class CrossSection : ICrossSection
{
public ICrossSectionRepository SectionRepository { get; private set; } = new CrossSectionRepository();
public Guid Id { get; private set; }
public CrossSection(Guid id)
{
Id = id;
}
public CrossSection() : this(Guid.NewGuid())
{
}
public object Clone()
{
throw new NotImplementedException();
}
}
}