public PartsWarehouse(IStoreProjections projectionsStore)
 {
     _projectionsStore = projectionsStore;
 }
Beispiel #2
0
 public Sales(IStoreProjections projectionsStorage)
 {
     _projectionsStorage = projectionsStorage;
 }
Beispiel #3
0
 public SalesEventHandler(IStoreProjections projectionsStore, ILogger <SalesEventHandler> log)
 {
     _projectionsStore = projectionsStore;
     _log = log;
 }