Refactoring

This commit is contained in:
Sergey Chebotar 2022-12-20 12:41:46 +03:00
parent 73569a4364
commit 6137433aef
8 changed files with 10 additions and 6 deletions

View File

@ -3,9 +3,8 @@ using ExcelDna.IntelliSense;
using Microsoft.Office.Interop.Excel;
using RhSolutions.Services;
using System.Net.Http;
using System.Runtime.Caching;
namespace RhSolutions
namespace RhSolutions.AddIn
{
class RhSolutionsAddIn : IExcelAddIn
{

View File

@ -1,7 +1,7 @@
using ExcelDna.Integration;
using System;
using RhSolutions.Services;
namespace RhSolutions.Services
namespace RhSolutions.AddIn
{
public class Functions
{

View File

@ -1,5 +1,6 @@
using ExcelDna.Integration.CustomUI;
using Microsoft.Office.Interop.Excel;
using RhSolutions.AddIn;
using RhSolutions.Services;
using System;
using System.IO;

View File

@ -1,4 +1,5 @@
using Microsoft.Office.Interop.Excel;
using RhSolutions.AddIn;
using RhSolutions.Models;
using RhSolutions.Services;
using System;

View File

@ -1,5 +1,6 @@
using ExcelDna.Integration;
using Microsoft.Office.Interop.Excel;
using RhSolutions.AddIn;
using System;
using System.Threading;
using System.Threading.Tasks;

View File

@ -97,8 +97,8 @@
<Compile Include="Models\TargetPriceList.cs" />
<Compile Include="Controllers\RibbonController.cs" />
<Compile Include="Controllers\ExportTool.cs" />
<Compile Include="AddIn.cs" />
<Compile Include="Services\Functions.cs" />
<Compile Include="AddIn\AddIn.cs" />
<Compile Include="AddIn\Functions.cs" />
<Compile Include="Models\WorksheetExtensions.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>

View File

@ -1,4 +1,5 @@
using Microsoft.Office.Interop.Excel;
using RhSolutions.AddIn;
using RhSolutions.Controllers;
namespace RhSolutions.Services

View File

@ -1,4 +1,5 @@
using Newtonsoft.Json;
using RhSolutions.AddIn;
using System.Collections.Generic;
using System.Linq;
using System.Net;