aboutsummaryrefslogtreecommitdiff
path: root/Source/ExcelDNA
diff options
context:
space:
mode:
Diffstat (limited to 'Source/ExcelDNA')
-rw-r--r--Source/ExcelDNA/AddIn.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Source/ExcelDNA/AddIn.cs b/Source/ExcelDNA/AddIn.cs
index b62412d..25e5bfd 100644
--- a/Source/ExcelDNA/AddIn.cs
+++ b/Source/ExcelDNA/AddIn.cs
@@ -4,13 +4,24 @@ using System.Net.Http;
namespace Rehau.Sku.Assist
{
+ public enum ResponseOrder
+ {
+ NoSettings,
+ Relevance,
+ Name,
+ Price,
+ Series
+ }
+
public class AddIn : IExcelAddIn
{
public static readonly HttpClient httpClient = new HttpClient();
+ public static ResponseOrder responseOrder;
public void AutoOpen()
{
RegisterFunctions();
+ responseOrder = ResponseOrder.NoSettings;
}
public void AutoClose()