Esempio n. 1
0
 public UserProfileService(IAggregateStore store, IFailoverPolicyProvider failoverPolicyProvider)
 {
     this.store     = store;
     failoverPolicy = failoverPolicyProvider.CommandRetryPolicy;
 }
 public ClassifiedAdsService(IAggregateStore store, IFailoverPolicyProvider failoverPolicyProvider, ICurrencyLookup currencyLookup)
 {
     this.store          = store;
     failoverPolicy      = failoverPolicyProvider.CommandRetryPolicy;
     this.currencyLookup = currencyLookup;
 }