| 123456789101112131415161718192021 |
- namespace SHJX.Service.Control.Interface
- {
- public interface ISettingService
- {
- public double DissolveTemperatureValue { get; }
- public double TitrationTemperatureValue { get; }
- bool IsAutomaticInLiquid { get; }
- bool IsExportTypeByExcel { get; }
- bool IsExportTypeByWord { get; }
- double TaskFinishTemprature { get; }
- bool TongsFeedback { get; }
- Dictionary<string, string> SettingTabItems { get; }
- public List<T> GetData<T>() where T : class;
- public bool UpdateSetting<T>(List<T> lists) where T : class;
- public void UpdatePath(string type, object value);
- public string GetConfigValue(string type);
- public void UpdateDissolveTemperatureValue(double value);
- public void UpdateTitrationTemperatureValue(double value);
- }
- }
|