Пример #1
0
 public StartUpCacheUpdater(IInjectConfig injectConfig)
 {
     _parameterAttributeCache   = injectConfig.Resolve <IParameterAttributeCache>();
     _serviceTypeParameterCache = injectConfig.Resolve <IServiceTypeParameterCache>();
     _deviceTypeCache           = injectConfig.Resolve <IDeviceTypeCache>();
     _deviceParamGroupCache     = injectConfig.Resolve <IDeviceParamGroupCache>();
 }
Пример #2
0
 public DeviceParameterGroupByIdValidator(IDeviceParamGroupCache deviceParamGroupCache, ILoggingService loggingService) : base(loggingService)
 {
     this._deviceParamGroupCache = deviceParamGroupCache;
 }