public PostalCodeImporter(dbi298845_prangersEntities database, countrycode countrycode) : base(database, countrycode) { }
protected override Importer <ingredient> CreateImporter(dbi298845_prangersEntities database, countrycode countrycode) { return(new IngredientImporter(database, countrycode)); }
public IngredientImporter(dbi298845_prangersEntities database, countrycode countrycode) : base(database, countrycode) { }
protected override Importer <bottom> CreateImporter(dbi298845_prangersEntities database, countrycode countrycode) { return(new BottomImporter(database, countrycode)); }
public Importer(dbi298845_prangersEntities database, countrycode countrycode) { this.database = database; this.countrycode = countrycode; }
public CommandRouter(dbi298845_prangersEntities database, countrycode countrycode) { _allCommand = new Dictionary <string, Command>(); _database = database; _countrycode = countrycode; }
protected override Importer <product> CreateImporter(dbi298845_prangersEntities database, countrycode countrycode) { return(new ProductImporter(database, countrycode)); }
public BottomImporter(dbi298845_prangersEntities database, countrycode countrycode) : base(database, countrycode) { }
protected override Importer <store> CreateImporter(dbi298845_prangersEntities database, countrycode countrycode) { return(new StoreImporter(database, countrycode)); }
public abstract void Initialize(dbi298845_prangersEntities database, countrycode countrycode);
public ProductIngredientImport(dbi298845_prangersEntities database, countrycode countrycode) : base(database, countrycode) { this.productImporter = new ProductImporter(database, countrycode); }
public override void Initialize(dbi298845_prangersEntities database, countrycode countrycode) { _database = database; }
protected override Importer <postalcode> CreateImporter(dbi298845_prangersEntities database, countrycode countrycode) { return(new PostalCodeImporter(database, countrycode)); }
protected abstract Importer <T> CreateImporter(dbi298845_prangersEntities database, countrycode countrycode);
public override void Initialize(dbi298845_prangersEntities database, countrycode countrycode) { _importer = CreateImporter(database, countrycode); }