Files
StructureHelper/StructureHelperLogics/Models/CrossSections/CrossSection.cs
Evgeny Redikultsev f562cf2bce All Test Was Repaired
2022-12-10 17:44:06 +05:00

19 lines
427 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; }
public CrossSection()
{
SectionRepository = new CrossSectionRepository();
}
}
}