コード例 #1
0
 public HelperService(NexusDataContext db)
 {
     _db = db;
 }
コード例 #2
0
 public LogRepository(NexusDataContext db)
 {
     _db = db;
 }
コード例 #3
0
 public EventStore(NexusDataContext db)
 {
     _db = db;
 }
コード例 #4
0
 public LogRepository(NexusDataContext db, IEventBus eventBus)
 {
     _eventBus = eventBus;
     _db       = db;
 }