Exemplo n.º 1
0
 public EFUploadSessionRepository(FileStorageDbContext dbContext, ITypedEventStore eventStore, ILogger logger)
 {
     this.DbContext          = dbContext;
     this.EventStore         = eventStore;
     this.Logger             = logger;
     this.ApplicationContext = new ApplicationContext();
 }
Exemplo n.º 2
0
 public EFUnitOfWork(FileStorageDbContext dbContext)
 {
     this.DbContext = dbContext;
 }
Exemplo n.º 3
0
 public EFFileInformationIndexRepository(FileStorageDbContext dbContext, ILogger logger)
 {
     this.DbContext = dbContext;
     this.Logger    = logger;
 }