Add logic for import of combination from xls files

This commit is contained in:
Evgeny Redikultsev
2025-01-18 22:13:11 +05:00
parent 13c3022c2f
commit f508399846
43 changed files with 1140 additions and 227 deletions

View File

@@ -10,19 +10,23 @@ namespace StructureHelperCommon.Models.Forces
/// <summary>
/// Settingth for column reading from MSExcel file
/// </summary>
public interface IColumnProperty : ISaveable
public interface IColumnProperty : ISaveable, ICloneable
{
/// <summary>
/// Name of column
/// </summary>
string Name { get; set; }
/// <summary>
/// Name of column for searching
/// </summary>
string ColumnName { get; set; }
string SearchingName { get; set; }
/// <summary>
/// Column index
/// </summary>
int ColumnIndex { get; set; }
int Index { get; set; }
/// <summary>
/// Factor for obtaining value from column
/// </summary>
double ColumnFactor { get; set; }
double Factor { get; set; }
}
}