Beispiel #1
0
 public HelperService(NexusDataContext db)
 {
     _db = db;
 }
Beispiel #2
0
 public LogRepository(NexusDataContext db)
 {
     _db = db;
 }
 public EventStore(NexusDataContext db)
 {
     _db = db;
 }
 public LogRepository(NexusDataContext db, IEventBus eventBus)
 {
     _eventBus = eventBus;
     _db       = db;
 }