RhSolutions-AddIn/RhSolutions.AddIn/Services/IAddInConfiguration.cs

13 lines
389 B
C#
Raw Normal View History

2023-03-28 07:25:10 +03:00
using System.Configuration;
2023-04-01 15:24:04 +03:00
namespace RhSolutions.Services;
public interface IAddInConfiguration
2023-03-28 07:25:10 +03:00
{
2023-04-01 15:24:04 +03:00
public string GetPriceListPath();
public string GetPriceListFileName();
2023-04-06 08:29:39 +03:00
public Dictionary<string, string> GetPriceListHeaders();
2023-04-01 15:24:04 +03:00
public event SettingChangingEventHandler OnSettingsChange;
public void SetPriceListPath(string value);
public void SaveSettings();
2023-03-28 07:25:10 +03:00
}