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 SettingTabItems { get; } public List GetData() where T : class; public bool UpdateSetting(List 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); } }