2024-11-13 23:42:28 +03:00
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
|
|
|
|
|
namespace RhSolutions.Services;
|
2023-04-01 15:24:04 +03:00
|
|
|
|
|
|
|
|
|
public interface IAddInConfiguration
|
2023-03-28 07:25:10 +03:00
|
|
|
|
{
|
2024-11-13 23:42:28 +03:00
|
|
|
|
string this[string key] { get; }
|
|
|
|
|
public string GetPriceListPath();
|
|
|
|
|
public void SetPriceListPath(string value);
|
|
|
|
|
public string GetPriceListFileName();
|
|
|
|
|
public Dictionary<string, string> GetPriceListHeaders();
|
|
|
|
|
public delegate void SettingsHandler();
|
|
|
|
|
public event SettingsHandler OnSettingsChange;
|
|
|
|
|
public void SaveSettings();
|
2023-03-28 07:25:10 +03:00
|
|
|
|
}
|