Example #1
0
 public StartUpCacheUpdater(IInjectConfig injectConfig)
 {
     _parameterAttributeCache   = injectConfig.Resolve <IParameterAttributeCache>();
     _serviceTypeParameterCache = injectConfig.Resolve <IServiceTypeParameterCache>();
     _deviceTypeCache           = injectConfig.Resolve <IDeviceTypeCache>();
     _deviceParamGroupCache     = injectConfig.Resolve <IDeviceParamGroupCache>();
 }
Example #2
0
 public SubscriptionValidator(ISubscriptionServicePlanRepository subscriptionServicePlanRepository, IServiceTypeParameterCache serviceTypeParameterCache, IParameterAttributeCache parameterAttributeCache, ILoggingService loggingService) : base(loggingService)
 {
     _subscriptionServicePlanRepository = subscriptionServicePlanRepository;
     _serviceTypeParameterCache         = serviceTypeParameterCache;
     _parameterAttributeCache           = parameterAttributeCache;
 }