Пример #1
0
 public PostalCodeImporter(dbi298845_prangersEntities database, countrycode countrycode) : base(database, countrycode)
 {
 }
Пример #2
0
 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));
 }
Пример #5
0
 public Importer(dbi298845_prangersEntities database, countrycode countrycode)
 {
     this.database    = database;
     this.countrycode = countrycode;
 }
Пример #6
0
 public CommandRouter(dbi298845_prangersEntities database, countrycode countrycode)
 {
     _allCommand  = new Dictionary <string, Command>();
     _database    = database;
     _countrycode = countrycode;
 }
Пример #7
0
 protected override Importer <product> CreateImporter(dbi298845_prangersEntities database, countrycode countrycode)
 {
     return(new ProductImporter(database, countrycode));
 }
Пример #8
0
 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));
 }
Пример #10
0
 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);
 }
Пример #12
0
 public override void Initialize(dbi298845_prangersEntities database, countrycode countrycode)
 {
     _database = database;
 }
Пример #13
0
 protected override Importer <postalcode> CreateImporter(dbi298845_prangersEntities database, countrycode countrycode)
 {
     return(new PostalCodeImporter(database, countrycode));
 }
Пример #14
0
 protected abstract Importer <T> CreateImporter(dbi298845_prangersEntities database, countrycode countrycode);
Пример #15
0
 public override void Initialize(dbi298845_prangersEntities database, countrycode countrycode)
 {
     _importer = CreateImporter(database, countrycode);
 }