using KryukovLib.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace KryukovLib.Helpers { public interface IContext : ICreator { void CreateTable(string[,] data); void CreateTableWithHeader(); void CreateMultiHeader(TableWithHeaderConfig config); void LoadDataToTableWithMultiHeader(string[,] data, int rowHeigth); } }