public ClothesTypeDatabaseValidateService(IClothesTypeTable clothesTypeTable,
                                           ICategoryDatabaseValidateService categoryDatabaseValidateService)
     : base(clothesTypeTable)
 {
     _categoryDatabaseValidateService = categoryDatabaseValidateService;
 }
Esempio n. 2
0
 public CategoryDatabaseService(IBoutiqueDatabase boutiqueDatabase,
                                ICategoryDatabaseValidateService categoryDatabaseValidateService,
                                ICategoryMainEntityConverter categoryEntityConverter)
     : base(boutiqueDatabase, boutiqueDatabase.CategoryTable, categoryDatabaseValidateService, categoryEntityConverter)
 {
 }