aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2022-02-02 18:02:17 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2022-02-02 18:02:17 +0300
commitcb5fee18918b5a29ccff23a0fb74bb13151f2e42 (patch)
treef72669b2a3ff4d191f2a44f483fcaf1f26d27b28 /src
parent7f3487d9132bf9b9e83a202c0ce04230926d56fd (diff)
Rename Abstract tool
Diffstat (limited to 'src')
-rw-r--r--src/PriceListTools/AbstractTool.cs (renamed from src/PriceListTools/PriceListTool.cs)2
-rw-r--r--src/PriceListTools/CombineTool.cs2
-rw-r--r--src/PriceListTools/ConvertTool.cs2
-rw-r--r--src/PriceListTools/ExportTool.cs2
-rw-r--r--src/PriceListTools/MergeTool.cs2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/PriceListTools/PriceListTool.cs b/src/PriceListTools/AbstractTool.cs
index 0a82a41..77dc63c 100644
--- a/src/PriceListTools/PriceListTool.cs
+++ b/src/PriceListTools/AbstractTool.cs
@@ -7,7 +7,7 @@ using Application = Microsoft.Office.Interop.Excel.Application;
namespace RehauSku.PriceListTools
{
- internal abstract class PriceListTool
+ internal abstract class AbstractTool
{
protected private Application ExcelApp = (Application)ExcelDnaUtil.Application;
protected private Target TargetFile;
diff --git a/src/PriceListTools/CombineTool.cs b/src/PriceListTools/CombineTool.cs
index cb47379..3222dae 100644
--- a/src/PriceListTools/CombineTool.cs
+++ b/src/PriceListTools/CombineTool.cs
@@ -5,7 +5,7 @@ using System.Linq;
namespace RehauSku.PriceListTools
{
- internal class CombineTool : PriceListTool
+ internal class CombineTool : AbstractTool
{
public List<Source> SourceFiles;
diff --git a/src/PriceListTools/ConvertTool.cs b/src/PriceListTools/ConvertTool.cs
index d10d65e..7308be9 100644
--- a/src/PriceListTools/ConvertTool.cs
+++ b/src/PriceListTools/ConvertTool.cs
@@ -3,7 +3,7 @@ using System;
namespace RehauSku.PriceListTools
{
- internal class ConvertTool : PriceListTool
+ internal class ConvertTool : AbstractTool
{
private Source Current;
diff --git a/src/PriceListTools/ExportTool.cs b/src/PriceListTools/ExportTool.cs
index 568145d..562c1b2 100644
--- a/src/PriceListTools/ExportTool.cs
+++ b/src/PriceListTools/ExportTool.cs
@@ -6,7 +6,7 @@ using RehauSku.Interface;
namespace RehauSku.PriceListTools
{
- internal class ExportTool : PriceListTool
+ internal class ExportTool : AbstractTool
{
private Dictionary<Position, double> PositionAmount;
private Range Selection;
diff --git a/src/PriceListTools/MergeTool.cs b/src/PriceListTools/MergeTool.cs
index a51b9b7..d31cc8a 100644
--- a/src/PriceListTools/MergeTool.cs
+++ b/src/PriceListTools/MergeTool.cs
@@ -4,7 +4,7 @@ using System.Linq;
namespace RehauSku.PriceListTools
{
- internal class MergeTool : PriceListTool
+ internal class MergeTool : AbstractTool
{
public List<Source> SourceFiles;