Changed reading strategy, uses interop instead of EPPlus
This commit is contained in:
12
WinFormDi.BLI/IExcel.cs
Normal file
12
WinFormDi.BLI/IExcel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
namespace WinFormDiApp.BLR
|
||||
{
|
||||
public interface IExcel
|
||||
{
|
||||
int Columns { get; set; }
|
||||
string DataType { get; set; }
|
||||
int Rows { get; set; }
|
||||
|
||||
void Dispose();
|
||||
string ReadCell(int i, int j);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user