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; }