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

14 lines
283 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.CrossSections
{
public interface ICrossSection
{
ICrossSectionRepository SectionRepository { get; }
}
}