Пример #1
0
 public GetAccountsDAO(EventStoreDBContext context)
 {
     _context = context;
 }
 public CreateAccountSuscriber(ICreateAccountGateway gateway, IEventStoreService service, EventStoreDBContext context)
 {
     _context = context;
     _service = service;
     _gateway = gateway;
 }
 public EventStoreService(EventStoreDBContext context)
 {
     _context = context;
     _events  = Enumerable.Empty <EventStoredDTO>().ToList();
 }
 public EventStoreSQLRepository(EventStoreDBContext context)
 {
     _context = context;
 }