Добавьте файлы проекта.
This commit is contained in:
14
QWERTYkez.ExcelProcessor/IExcelReader.cs
Normal file
14
QWERTYkez.ExcelProcessor/IExcelReader.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace QWERTYkez.ExcelProcessor;
|
||||
|
||||
public interface IExcelReader
|
||||
{
|
||||
long DocumentSize { get; }
|
||||
string? FilePath { get; }
|
||||
bool IsValid { get; }
|
||||
|
||||
ISet<string> FindPlaceholders();
|
||||
|
||||
|
||||
bool TryWrite(string destinationPath, Action<IExcelWriter> action);
|
||||
bool TryWrite(Action<IExcelWriter> write, Action<IExcelReader> read);
|
||||
}
|
||||
Reference in New Issue
Block a user