public ValueEditorCacheRefresher(
     AppCaches appCaches,
     IJsonSerializer serializer,
     IEventAggregator eventAggregator,
     ICacheRefresherNotificationFactory factory,
     IValueEditorCache valueEditorCache)
     : base(appCaches, serializer, eventAggregator, factory) =>
Esempio n. 2
0
 public PropertyValidationService(
     PropertyEditorCollection propertyEditors,
     IDataTypeService dataTypeService,
     ILocalizedTextService textService,
     IValueEditorCache valueEditorCache)
 {
     _propertyEditors  = propertyEditors;
     _dataTypeService  = dataTypeService;
     _textService      = textService;
     _valueEditorCache = valueEditorCache;
 }