Exemplo n.º 1
0
 public HelperService(NexusDataContext db)
 {
     _db = db;
 }
Exemplo n.º 2
0
 public LogRepository(NexusDataContext db)
 {
     _db = db;
 }
Exemplo n.º 3
0
 public EventStore(NexusDataContext db)
 {
     _db = db;
 }
Exemplo n.º 4
0
 public LogRepository(NexusDataContext db, IEventBus eventBus)
 {
     _eventBus = eventBus;
     _db       = db;
 }