FileWork examples were added

This commit is contained in:
ear
2024-09-06 18:13:21 +05:00
parent 2268557672
commit 408e9f6999
13 changed files with 811 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using StructureHelperLogics.Models.CrossSections;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataAccess.DTOs
{
public class CrossSectionDTO : ICrossSection
{
public ICrossSectionRepository SectionRepository { get; }
public Guid Id { get; set; }
public object Clone()
{
throw new NotImplementedException();
}
}
}