Add cross-section convert strategies

This commit is contained in:
Evgeny Redikultsev
2024-09-28 20:46:42 +05:00
parent c10d6eb94e
commit 58b6e0eb8b
89 changed files with 1204 additions and 174 deletions

View File

@@ -1,4 +1,5 @@
using StructureHelperLogics.Models.CrossSections;
using Newtonsoft.Json;
using StructureHelperLogics.Models.CrossSections;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -9,9 +10,11 @@ namespace DataAccess.DTOs
{
public class CrossSectionDTO : ICrossSection
{
public ICrossSectionRepository SectionRepository { get; }
[JsonProperty("Id")]
public Guid Id { get; set; }
[JsonProperty("SectionRepository")]
public ICrossSectionRepository SectionRepository { get; set; }
public object Clone()
{