Пример #1
0
 public ClothesDatabaseValidateService(IClothesTable clothesTable,
                                       IGenderDatabaseValidateService genderDatabaseValidateService,
                                       IClothesTypeDatabaseValidateService clothesTypeDatabaseValidateService,
                                       IColorClothesDatabaseValidateService colorClothesDatabaseValidateService,
                                       ISizeGroupDatabaseValidateService sizeGroupDatabaseValidateService)
     : base(clothesTable)
 {
     _genderDatabaseValidateService       = genderDatabaseValidateService;
     _clothesTypeDatabaseValidateService  = clothesTypeDatabaseValidateService;
     _colorClothesDatabaseValidateService = colorClothesDatabaseValidateService;
     _sizeGroupDatabaseValidateService    = sizeGroupDatabaseValidateService;
 }
Пример #2
0
 public ClothesTypeDatabaseService(IBoutiqueDatabase boutiqueDatabase,
                                   IClothesTypeDatabaseValidateService clothesTypeDatabaseValidateService,
                                   IClothesTypeMainEntityConverter clothesTypeEntityConverter)
     : base(boutiqueDatabase, boutiqueDatabase.ClotheTypeTable, clothesTypeDatabaseValidateService, clothesTypeEntityConverter)
 {
 }