Files
Accounting/Accounting.BLI/IExcellent.cs

14 lines
296 B
C#

namespace Accounting.BLI
{
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);
}
}