IParameterServices.cs 436 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using EMIS.ViewModel;
  6. namespace EMIS.CommonLogic.SystemServices
  7. {
  8. public interface IParameterServices
  9. {
  10. Nullable<T> GetParameterValue<T>(CF_ParameterType parameterType) where T : struct;
  11. string GetParameterValue(CF_ParameterType parameterType);
  12. void SaveTo(CF_ParameterType parameterType, object value);
  13. }
  14. }