Add Interface namespace

This commit is contained in:
Sergey Chebotar 2022-02-02 09:46:47 +03:00
parent 7e5020ec25
commit 06799119fb
8 changed files with 13 additions and 12 deletions

View File

@ -1,5 +1,5 @@
using Microsoft.Win32;
using RehauSku.Forms;
using RehauSku.Interface;
using System;
using System.IO;
using System.Windows.Forms;

View File

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Windows.Forms;
namespace RehauSku.Forms
namespace RehauSku.Interface
{
static class Dialog
{

View File

@ -1,11 +1,10 @@
using ExcelDna.Integration.CustomUI;
using RehauSku.Forms;
using RehauSku.PriceListTools;
using System;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace RehauSku.Ribbon
namespace RehauSku.Interface
{
[ComVisible(true)]
public class RibbonController : ExcelRibbon

View File

@ -25,7 +25,7 @@ namespace RehauSku.PriceListTools
FilterByAmount();
Forms.Dialog.SaveWorkbookAs();
Interface.Dialog.SaveWorkbookAs();
}
}
}

View File

@ -1,4 +1,5 @@
using System;
using RehauSku.Interface;
using System;
namespace RehauSku.PriceListTools
{
@ -31,7 +32,7 @@ namespace RehauSku.PriceListTools
FilterByAmount();
Forms.Dialog.SaveWorkbookAs();
Dialog.SaveWorkbookAs();
}
}
}

View File

@ -31,7 +31,7 @@ namespace RehauSku.PriceListTools
FilterByAmount();
Forms.Dialog.SaveWorkbookAs();
Interface.Dialog.SaveWorkbookAs();
}
private void GetSelected()

View File

@ -1,4 +1,5 @@
using System.Collections.Generic;
using RehauSku.Interface;
using System.Collections.Generic;
namespace RehauSku.PriceListTools
{
@ -16,7 +17,7 @@ namespace RehauSku.PriceListTools
FilterByAmount();
Forms.Dialog.SaveWorkbookAs();
Dialog.SaveWorkbookAs();
}
}
}

View File

@ -115,7 +115,7 @@
<Reference Include="WindowsBase" />
</ItemGroup>
<ItemGroup>
<Compile Include="Forms\Dialog.cs" />
<Compile Include="Interface\Dialog.cs" />
<Compile Include="AddIn\RegistryUtil.cs" />
<Compile Include="AddIn\MemoryCacheUtil.cs" />
<Compile Include="Assistant\ParseUtil.cs" />
@ -129,7 +129,7 @@
<Compile Include="PriceListTools\PriceList.cs" />
<Compile Include="PriceListTools\Source.cs" />
<Compile Include="PriceListTools\Target.cs" />
<Compile Include="Ribbon\RibbonController.cs" />
<Compile Include="Interface\RibbonController.cs" />
<Compile Include="Assistant\HttpClientUtil.cs" />
<Compile Include="Assistant\StoreResponse.cs" />
<Compile Include="PriceListTools\ExportTool.cs" />