/// <summary>
 /// 构造
 /// </summary>
 public NpoiExcelExportProvider(INpoiCellStyleHandle npoiCellStyleHandle, INpoiExcelHandle npoiExcelHandle)
 {
     _npoiCellStyleHandle = npoiCellStyleHandle;
     _npoiExcelHandle     = npoiExcelHandle;
 }
 /// <summary>
 /// 构造
 /// </summary>
 public NpoiExcelImportProvider(INpoiExcelHandle npoiExcelHandle)
 {
     _npoiExcelHandle = npoiExcelHandle;
 }
 /// <summary>
 /// 构造
 /// </summary>
 public NpoiExcelImportBase(INpoiExcelHandle npoiExcelHandle)
 {
     _npoiExcelHandle = npoiExcelHandle;
 }
Example #4
0
 /// <summary>
 /// 构造
 /// </summary>
 public NpoiExcelExportBase(INpoiCellStyleHandle npoiCellStyleHandle, INpoiExcelHandle npoiExcelHandle)
 {
     _npoiCellStyleHandle = npoiCellStyleHandle;
     _npoiExcelHandle     = npoiExcelHandle;
 }