Exemple #1
0
 public StoreChainUpdateCommandHandler(IStoreChainRepository storeChain)
 {
     this.storeChain = storeChain ?? throw new ArgumentNullException(nameof(storeChain));
 }
 public StoreChainController(IStoreChainRepository storeChainRepository, ICurrentUserProvider currentUserProvider)
 {
     _storeChainRepository = storeChainRepository;
     _currentUserProvider  = currentUserProvider;
 }