Renamed ExportBomToExcel to BomToExcel

This commit is contained in:
AJ
2021-03-05 20:41:40 -05:00
parent 0b4173014f
commit 96e54a686b
3 changed files with 3 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ using System.IO;
namespace ExportDXF
{
public class ExportBomToExcel
public class BomToExcel
{
public string TemplatePath
{

View File

@@ -92,7 +92,7 @@
<Compile Include="BendOrientation.cs" />
<Compile Include="Bounds.cs" />
<Compile Include="DrawingInfo.cs" />
<Compile Include="ExportBomToExcel.cs" />
<Compile Include="BomToExcel.cs" />
<Compile Include="Extensions.cs" />
<Compile Include="ItemExtractor.cs" />
<Compile Include="Forms\ViewFlipDeciderComboboxItem.cs" />

View File

@@ -424,7 +424,7 @@ namespace ExportDXF.Forms
var bomName = drawingInfo != null ? string.Format("{0} {1} BOM", drawingInfo.JobNo, drawingInfo.DrawingNo) : "BOM";
var bomFile = Path.Combine(savePath, bomName + ".xlsx");
var excelReport = new ExportBomToExcel();
var excelReport = new BomToExcel();
excelReport.CreateBOMExcelFile(bomFile, items.ToList());
}
catch (Exception ex)