Usings simplify
This commit is contained in:
parent
2280b49ae1
commit
cdb153c988
@ -1,12 +1,5 @@
|
||||
using ExcelDna.Integration;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using RhSolutions.Models;
|
||||
using RhSolutions.Services;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
namespace RhSolutions.AddIn;
|
||||
|
||||
namespace RhSolutions.AddIn
|
||||
{
|
||||
public class RhSolutionsFunction
|
||||
{
|
||||
[ExcelFunction(Description = "Распознать артикул и попробовать найти его в прайс-листе")]
|
||||
@ -54,4 +47,3 @@ namespace RhSolutions.AddIn
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,13 +1,7 @@
|
||||
using Microsoft.Office.Interop.Excel;
|
||||
using RhSolutions.AddIn;
|
||||
using RhSolutions.Models;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Range = Microsoft.Office.Interop.Excel.Range;
|
||||
using RhSolutions.AddIn;
|
||||
|
||||
namespace RhSolutions.Controllers;
|
||||
|
||||
namespace RhSolutions.Controllers
|
||||
{
|
||||
internal class CombineTool : ToolBase
|
||||
{
|
||||
private List<SourcePriceList> SourceFiles { get; set; }
|
||||
@ -63,4 +57,3 @@ namespace RhSolutions.Controllers
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,5 @@
|
||||
using RhSolutions.Models;
|
||||
namespace RhSolutions.Controllers;
|
||||
|
||||
namespace RhSolutions.Controllers
|
||||
{
|
||||
internal class ConvertTool : ToolBase
|
||||
{
|
||||
private SourcePriceList Current { get; set; }
|
||||
@ -27,4 +25,3 @@ namespace RhSolutions.Controllers
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,12 +1,9 @@
|
||||
using Microsoft.Office.Interop.Excel;
|
||||
using System;
|
||||
using RhSolutions.Models;
|
||||
using System.Collections.Generic;
|
||||
using RhSolutions.Models;
|
||||
using System.Linq;
|
||||
using Range = Microsoft.Office.Interop.Excel.Range;
|
||||
|
||||
namespace RhSolutions.Controllers
|
||||
{
|
||||
namespace RhSolutions.Controllers;
|
||||
|
||||
internal class ExportTool : ToolBase
|
||||
{
|
||||
private Dictionary<Product, double> PositionAmount;
|
||||
@ -97,5 +94,4 @@ namespace RhSolutions.Controllers
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,15 +1,11 @@
|
||||
using ExcelDna.Integration.CustomUI;
|
||||
using Microsoft.Office.Interop.Excel;
|
||||
using RhSolutions.AddIn;
|
||||
using RhSolutions.Services;
|
||||
using System;
|
||||
using System.Reflection;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Windows.Forms;
|
||||
using Range = Microsoft.Office.Interop.Excel.Range;
|
||||
|
||||
namespace RhSolutions.Controllers
|
||||
{
|
||||
namespace RhSolutions.Controllers;
|
||||
|
||||
[ComVisible(true)]
|
||||
public class RibbonController : ExcelRibbon
|
||||
{
|
||||
@ -129,4 +125,3 @@ namespace RhSolutions.Controllers
|
||||
return string.IsNullOrEmpty(name) ? "Нет файла шаблона!" : name;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,11 +1,4 @@
|
||||
using Microsoft.Office.Interop.Excel;
|
||||
using RhSolutions.AddIn;
|
||||
using RhSolutions.Models;
|
||||
using RhSolutions.Services;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Range = Microsoft.Office.Interop.Excel.Range;
|
||||
using RhSolutions.AddIn;
|
||||
|
||||
namespace RhSolutions.Controllers
|
||||
{
|
||||
|
@ -1,13 +1,7 @@
|
||||
using ExcelDna.Integration;
|
||||
using Microsoft.Office.Interop.Excel;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using Range = Microsoft.Office.Interop.Excel.Range;
|
||||
using System.IO;
|
||||
|
||||
namespace RhSolutions.Models;
|
||||
|
||||
namespace RhSolutions.Models
|
||||
{
|
||||
internal class SourcePriceList : PriceListBase
|
||||
{
|
||||
public Dictionary<Product, double> PositionAmount { get; private set; }
|
||||
@ -112,5 +106,4 @@ namespace RhSolutions.Models
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,11 +1,7 @@
|
||||
using Microsoft.Office.Interop.Excel;
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using Range = Microsoft.Office.Interop.Excel.Range;
|
||||
using System.IO;
|
||||
|
||||
namespace RhSolutions.Models;
|
||||
|
||||
namespace RhSolutions.Models
|
||||
{
|
||||
internal class TargetPriceList : PriceListBase
|
||||
{
|
||||
public Range OldSkuCell { get; private set; }
|
||||
@ -37,5 +33,4 @@ namespace RhSolutions.Models
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,9 +1,5 @@
|
||||
using Microsoft.Office.Interop.Excel;
|
||||
using RhSolutions.Models;
|
||||
using System.Linq;
|
||||
namespace RhSolutions.Services;
|
||||
|
||||
namespace RhSolutions.Services
|
||||
{
|
||||
public static class WorksheetExtensions
|
||||
{
|
||||
public static bool IsRehauSource(this Worksheet worksheet)
|
||||
@ -37,5 +33,4 @@ namespace RhSolutions.Services
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,5 +1,9 @@
|
||||
global using ExcelDna.Integration;
|
||||
global using Microsoft.Extensions.DependencyInjection;
|
||||
global using Microsoft.Office.Interop.Excel;
|
||||
global using RhSolutions.Models;
|
||||
global using RhSolutions.Services;
|
||||
global using System;
|
||||
global using System.Collections.Generic;
|
||||
global using System.Linq;
|
||||
global using Range = Microsoft.Office.Interop.Excel.Range;
|
Loading…
Reference in New Issue
Block a user