Exemplo n.º 1
0
 public OrlenWholesalePriceUpdater(
     OrlenWholesalePriceFetcher fetcher,
     GasWebDbContext dbContext,
     SystemFranchiseCollection franchiseCollection)
     : base(fetcher, dbContext, franchiseCollection.Orlen)
 {
 }
Exemplo n.º 2
0
 public BpWholesalePriceUpdater(
     BpWholesalePriceFetcher priceProvider,
     GasWebDbContext dbContext,
     SystemFranchiseCollection franchiseCollection)
     : base(priceProvider, dbContext, franchiseCollection.Bp)
 {
 }
Exemplo n.º 3
0
 public LotosWholesalePriceUpdater(
     LotosWholesalePriceFetcher fetcher,
     SystemFranchiseCollection franchiseCollection,
     GasWebDbContext dbContext)
     : base(fetcher, dbContext, franchiseCollection.Lotos)
 {
 }
Exemplo n.º 4
0
 public AuchanGasStationsUpdater(
     AuchanGasStationsFetcher gasStationsFetcher,
     SystemFranchiseCollection franchiseCollection,
     GasWebDbContext dbContext,
     IAuditMetadataProvider auditMetadataProvider)
 {
     this.gasStationsFetcher    = gasStationsFetcher;
     this.franchiseCollection   = franchiseCollection;
     this.dbContext             = dbContext;
     this.auditMetadataProvider = auditMetadataProvider;
 }