ISettingService.cs 841 B

123456789101112131415161718192021
  1. namespace SHJX.Service.Control.Interface
  2. {
  3. public interface ISettingService
  4. {
  5. public double DissolveTemperatureValue { get; }
  6. public double TitrationTemperatureValue { get; }
  7. bool IsAutomaticInLiquid { get; }
  8. bool IsExportTypeByExcel { get; }
  9. bool IsExportTypeByWord { get; }
  10. double TaskFinishTemprature { get; }
  11. bool TongsFeedback { get; }
  12. Dictionary<string, string> SettingTabItems { get; }
  13. public List<T> GetData<T>() where T : class;
  14. public bool UpdateSetting<T>(List<T> lists) where T : class;
  15. public void UpdatePath(string type, object value);
  16. public string GetConfigValue(string type);
  17. public void UpdateDissolveTemperatureValue(double value);
  18. public void UpdateTitrationTemperatureValue(double value);
  19. }
  20. }