Rename Abstract tool
This commit is contained in:
parent
7f3487d913
commit
cb5fee1891
@ -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;
|
@ -5,7 +5,7 @@ using System.Linq;
|
||||
|
||||
namespace RehauSku.PriceListTools
|
||||
{
|
||||
internal class CombineTool : PriceListTool
|
||||
internal class CombineTool : AbstractTool
|
||||
{
|
||||
public List<Source> SourceFiles;
|
||||
|
||||
|
@ -3,7 +3,7 @@ using System;
|
||||
|
||||
namespace RehauSku.PriceListTools
|
||||
{
|
||||
internal class ConvertTool : PriceListTool
|
||||
internal class ConvertTool : AbstractTool
|
||||
{
|
||||
private Source Current;
|
||||
|
||||
|
@ -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;
|
||||
|
@ -4,7 +4,7 @@ using System.Linq;
|
||||
|
||||
namespace RehauSku.PriceListTools
|
||||
{
|
||||
internal class MergeTool : PriceListTool
|
||||
internal class MergeTool : AbstractTool
|
||||
{
|
||||
public List<Source> SourceFiles;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user