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