FileWork examples were added
This commit is contained in:
21
DataAccess/DTOs/CrossSectionDTO.cs
Normal file
21
DataAccess/DTOs/CrossSectionDTO.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user