17 lines
366 B
C#
17 lines
366 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using NotVisualComponent.Models;
|
|
|
|
namespace NotVisualComponent.Helpers
|
|
{
|
|
public interface ICreator
|
|
{
|
|
void CreateHeader(string header);
|
|
void SaveDoc(string filepath);
|
|
void CreateBarChart(ChartConfig config);
|
|
}
|
|
}
|