Kaynağa Gözat

Added constructor for ExcelReader

Piotr Czajkowski 3 ay önce
ebeveyn
işleme
c888c95a44
1 değiştirilmiş dosya ile 5 ekleme ve 0 silme
  1. 5 0
      ExcelORM/ExcelORM/ExcelReader.cs

+ 5 - 0
ExcelORM/ExcelORM/ExcelReader.cs

@@ -11,6 +11,11 @@ public class ExcelReader
     public bool SkipHidden { get; set; }
     public bool ObeyFilter { get; set; }
 
+    public ExcelReader(IXLWorkbook workbook)
+    {
+        xlWorkbook = workbook ?? throw new ArgumentNullException(nameof(workbook));
+    }
+
     public ExcelReader(string? path)
     {
         xlWorkbook = new XLWorkbook(path);