Ejemplo n.º 1
0
 public ZipCodesSeeder(IStoreDataContextFactory contextFactory, IConfigurationReader configurationReader)
 {
     _contextFactory      = contextFactory;
     _configurationReader = configurationReader;
 }
Ejemplo n.º 2
0
 public ZipCodeDataService(IStoreDataContextFactory contextFactory) => _contextFactory = contextFactory;
 public StoreInfoResponseDataService(IStoreDataContextFactory contextFactory) => _contextFactory = contextFactory;
 public PersistenceInitializer(IStoreDataContextFactory contextFactory, ZipCodesSeeder zipCodesSeeder)
 {
     _contextFactory = contextFactory;
     _zipCodesSeeder = zipCodesSeeder;
 }