Example #1
0
 public TankProvider(WellDataDbContext wellDbContext)
 {
     _wellDbContext = wellDbContext;
 }
Example #2
0
 public DbContextFixture(WellDataDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #3
0
 public WellDataImporter(Func <string, IWellDataImportStrategy> importStrategy,
                         WellDataDbContext wellDbContext)
 {
     _importStrategy = importStrategy;
     _wellDbContext  = wellDbContext;
 }