Now it works reading in different transactionsheets from excel

This commit is contained in:
2023-08-31 22:37:48 +02:00
parent f56a4bca3e
commit 2b4d10070f
7 changed files with 73 additions and 62 deletions

View File

@ -1,12 +1,13 @@
namespace WinFormDiApp.BLR
{
public interface IExcel
public interface IExcellent
{
int Columns { get; set; }
string DataType { get; set; }
int Rows { get; set; }
void Dispose();
void ExcellentStart(string path, int Sheet);
string ReadCell(int i, int j);
}
}