public StoreOwnerAppService( IStoreOwnerRepository repository, IExternalUserLookupServiceProvider externalUserLookupServiceProvider) : base(repository) { _repository = repository; _externalUserLookupServiceProvider = externalUserLookupServiceProvider; }
public StoreOwnerStore(ILogger <StoreOwnerStore> logger, IStoreOwnerRepository storeOwnerRepository, IDistributedCache <StoreOwnerCacheItem> cache) { StoreOwnerRepository = storeOwnerRepository; Cache = cache; Logger = logger ?? NullLogger <StoreOwnerStore> .Instance; }
public StoreOwnerAppService(IStoreOwnerRepository repository) : base(repository) { _repository = repository; }