Esempio n. 1
0
 public GenderDatabaseService(IBoutiqueDatabase boutiqueDatabase,
                              IGenderDatabaseValidateService genderDatabaseValidateService,
                              IGenderEntityConverter genderEntityConverter,
                              IGenderCategoryEntityConverter genderCategoryEntityConverter)
     : base(boutiqueDatabase, boutiqueDatabase.GendersTable, genderDatabaseValidateService, genderEntityConverter)
 {
     _boutiqueDatabase = boutiqueDatabase;
     _genderCategoryEntityConverter = genderCategoryEntityConverter;
 }
Esempio n. 2
0
 public ClothesDatabaseService(IBoutiqueDatabase boutiqueDatabase,
                               IClothesDatabaseValidateService clothesDatabaseValidateService,
                               IClothesEntityConverter clothesEntityConverter,
                               IClothesDetailEntityConverter clothesDetailEntityConverter,
                               IClothesMainEntityConverter clothesMainEntityConverter,
                               IClothesImageEntityConverter clothesImageEntityConverter)
     : base(boutiqueDatabase, boutiqueDatabase.ClothesTable, clothesDatabaseValidateService, clothesMainEntityConverter)
 {
     _clothesTable                 = boutiqueDatabase.ClothesTable;
     _clothesEntityConverter       = clothesEntityConverter;
     _clothesDetailEntityConverter = clothesDetailEntityConverter;
     _clothesImageEntityConverter  = clothesImageEntityConverter;
 }
 public SizeDatabaseService(IBoutiqueDatabase boutiqueDatabase,
                            ISizeDatabaseValidateService sizeDatabaseValidateService,
                            ISizeEntityConverter sizeEntityConverter)
     : base(boutiqueDatabase, boutiqueDatabase.SizeTable, sizeDatabaseValidateService, sizeEntityConverter)
 {
 }
Esempio n. 4
0
 public CategoryDatabaseService(IBoutiqueDatabase boutiqueDatabase,
                                ICategoryDatabaseValidateService categoryDatabaseValidateService,
                                ICategoryMainEntityConverter categoryEntityConverter)
     : base(boutiqueDatabase, boutiqueDatabase.CategoryTable, categoryDatabaseValidateService, categoryEntityConverter)
 {
 }
 public ColorDatabaseService(IBoutiqueDatabase boutiqueDatabase,
                             IColorClothesDatabaseValidateService colorClothesDatabaseValidateService,
                             IColorClothesEntityConverter colorClothesEntityConverter)
     : base(boutiqueDatabase, boutiqueDatabase.ColorClothesTable, colorClothesDatabaseValidateService, colorClothesEntityConverter)
 {
 }
Esempio n. 6
0
 public ClothesTypeDatabaseService(IBoutiqueDatabase boutiqueDatabase,
                                   IClothesTypeDatabaseValidateService clothesTypeDatabaseValidateService,
                                   IClothesTypeMainEntityConverter clothesTypeEntityConverter)
     : base(boutiqueDatabase, boutiqueDatabase.ClotheTypeTable, clothesTypeDatabaseValidateService, clothesTypeEntityConverter)
 {
 }