Rename Abstract tool

This commit is contained in:
Sergey Chebotar 2022-02-02 18:02:17 +03:00
parent 7f3487d913
commit cb5fee1891
5 changed files with 5 additions and 5 deletions

View File

@ -7,7 +7,7 @@ using Application = Microsoft.Office.Interop.Excel.Application;
namespace RehauSku.PriceListTools namespace RehauSku.PriceListTools
{ {
internal abstract class PriceListTool internal abstract class AbstractTool
{ {
protected private Application ExcelApp = (Application)ExcelDnaUtil.Application; protected private Application ExcelApp = (Application)ExcelDnaUtil.Application;
protected private Target TargetFile; protected private Target TargetFile;

View File

@ -5,7 +5,7 @@ using System.Linq;
namespace RehauSku.PriceListTools namespace RehauSku.PriceListTools
{ {
internal class CombineTool : PriceListTool internal class CombineTool : AbstractTool
{ {
public List<Source> SourceFiles; public List<Source> SourceFiles;

View File

@ -3,7 +3,7 @@ using System;
namespace RehauSku.PriceListTools namespace RehauSku.PriceListTools
{ {
internal class ConvertTool : PriceListTool internal class ConvertTool : AbstractTool
{ {
private Source Current; private Source Current;

View File

@ -6,7 +6,7 @@ using RehauSku.Interface;
namespace RehauSku.PriceListTools namespace RehauSku.PriceListTools
{ {
internal class ExportTool : PriceListTool internal class ExportTool : AbstractTool
{ {
private Dictionary<Position, double> PositionAmount; private Dictionary<Position, double> PositionAmount;
private Range Selection; private Range Selection;

View File

@ -4,7 +4,7 @@ using System.Linq;
namespace RehauSku.PriceListTools namespace RehauSku.PriceListTools
{ {
internal class MergeTool : PriceListTool internal class MergeTool : AbstractTool
{ {
public List<Source> SourceFiles; public List<Source> SourceFiles;