2023-11-12 16:31:26 +03:00
|
|
|
|
namespace RhSolutions.Services;
|
2023-04-01 15:24:04 +03:00
|
|
|
|
|
|
|
|
|
public interface IAddInConfiguration
|
2023-03-28 07:25:10 +03:00
|
|
|
|
{
|
2023-04-01 15:24:04 +03:00
|
|
|
|
public string GetPriceListPath();
|
2023-11-12 16:31:26 +03:00
|
|
|
|
public void SetPriceListPath(string value);
|
2023-04-01 15:24:04 +03:00
|
|
|
|
public string GetPriceListFileName();
|
2023-04-06 08:29:39 +03:00
|
|
|
|
public Dictionary<string, string> GetPriceListHeaders();
|
2023-11-12 16:31:26 +03:00
|
|
|
|
public delegate void SettingsHandler();
|
|
|
|
|
public event SettingsHandler OnSettingsChange;
|
2023-04-01 15:24:04 +03:00
|
|
|
|
public void SaveSettings();
|
2023-03-28 07:25:10 +03:00
|
|
|
|
}
|