PIbd-31_Shanygin.A.V._COP_27/ComponentOrientedProgramming/NotVisualComponent/Helpers/IContext.cs

21 lines
591 B
C#
Raw Normal View History

2024-09-19 19:34:15 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using NotVisualComponent.Models;
namespace NotVisualComponent.Helpers
{
2024-10-13 16:15:32 +04:00
public interface IContext
2024-09-19 19:34:15 +04:00
{
void CreateTable(string[,] data);
void CreateTableWithHeader();
void CreateMultiHeader<T>(TableWithHeaderConfig<T> config);
void LoadDataToTableWithMultiHeader(string[,] data, int rowHeight);
2024-10-13 16:15:32 +04:00
void CreateHeader(string header);
void SaveDoc(string filepath);
void CreateBarChart(ChartConfig config);
2024-09-19 19:34:15 +04:00
}
}