/// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="kvPropertyService">Key-value property service.</param>
 /// /// <param name="consensusContext">Consensus context.</param>
 public KvPropertiesController(
     IKvPropertyService kvPropertyService,
     IConsensusContext consensusContext)
 {
     _kvPropertyService = kvPropertyService;
     _consensusContext  = consensusContext;
 }
Esempio n. 2
0
 public LogReplicationHandler(
     IServiceHealthService serviceHealthService,
     IServicesService servicesService,
     IKvPropertyService kvPropertyService)
 {
     _serviceHealthService = serviceHealthService;
     _servicesService      = servicesService;
     _kvPropertyService    = kvPropertyService;
 }