Files
StructureHelper/StructureHelperLogics/NdmCalculations/Analyses/IExportResultLogic.cs
Evgeny Redikultsev 913d31e04f Export to CSV was added
2022-12-22 21:08:28 +05:00

14 lines
276 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.NdmCalculations.Analyses
{
public interface IExportResultLogic
{
void Export(INdmResult ndmResult);
}
}