Add logic for export to DXF

This commit is contained in:
Evgeny Redikultsev
2025-10-29 22:07:41 +05:00
parent c84dc47134
commit 693e0648c4
9 changed files with 149 additions and 35 deletions

View File

@@ -1,12 +1,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using StructureHelperCommon.Services.Exports;
using System.Windows;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Xml.Linq;
namespace StructureHelperLogics.NdmCalculations.Analyses
{

View File

@@ -1,10 +1,6 @@
using StructureHelperLogics.NdmCalculations.Analyses.ByForces;
using StructureHelperCommon.Services.Exports;
using StructureHelperLogics.NdmCalculations.Analyses.Geometry;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.NdmCalculations.Analyses
{

View File

@@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using StructureHelperCommon.Services.Exports;
using System.Windows.Media.Imaging;
namespace StructureHelperLogics.NdmCalculations.Analyses

View File

@@ -1,4 +1,5 @@
using System.Text;
using StructureHelperCommon.Services.Exports;
using System.Text;
namespace StructureHelperLogics.NdmCalculations.Analyses
{

View File

@@ -1,14 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.NdmCalculations.Analyses
{
public interface IExportResultLogic
{
string FileName { get; set; }
void Export();
}
}