36 lines
814 B
C#
36 lines
814 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KOP_Labs.Classes
|
|
{
|
|
public class MyTableWithHead<T>
|
|
{
|
|
public string _filePath = string.Empty;
|
|
|
|
public string _fileHeader = string.Empty;
|
|
|
|
public List<double> _heightRow = new();
|
|
|
|
public List<double> _widthCol = new();
|
|
|
|
public List<T> _dataList;
|
|
|
|
|
|
public Dictionary<int, ColumnParameters> _columnsSettings;
|
|
|
|
public MyTableWithHead(string filePath, string fileHeader, List<double> heightRow,
|
|
List<double> widthCol, List<T> dataList, Dictionary<int, ColumnParameters> columnsSettings)
|
|
{
|
|
_filePath = filePath;
|
|
_fileHeader = fileHeader;
|
|
_heightRow = heightRow;
|
|
_widthCol = widthCol;
|
|
_dataList = dataList;
|
|
_columnsSettings = columnsSettings;
|
|
}
|
|
}
|
|
}
|