30use Bitrix\Catalog\v2\Property\Property;
60 Dependency::CONTAINER => Container::class,
62 Dependency::IBLOCK_INFO => IblockInfo::class,
63 Dependency::PRODUCT_CONVERTER => ProductConverter::class,
64 Dependency::REPOSITORY_FACADE => Repository::class,
66 Dependency::PRODUCT_FACTORY => ProductFactory::class,
67 Dependency::PRODUCT_REPOSITORY => ProductRepository::class,
69 ProductFactory::PRODUCT => Product::class,
71 Dependency::SECTION_FACTORY => SectionFactory::class,
72 Dependency::SECTION_REPOSITORY => SectionRepository::class,
74 SectionFactory::SECTION => Section::class,
75 SectionFactory::SECTION_COLLECTION => SectionCollection::class,
77 Dependency::SKU_FACTORY => SkuFactory::class,
78 Dependency::SKU_REPOSITORY => SkuRepository::class,
80 SkuFactory::SIMPLE_SKU => SimpleSku::class,
81 SkuFactory::SKU => Sku::class,
82 SkuFactory::SKU_COLLECTION => SkuCollection::class,
84 Dependency::PROPERTY_FACTORY => PropertyFactory::class,
85 Dependency::PROPERTY_REPOSITORY => PropertyRepository::class,
87 PropertyFactory::PROPERTY => Property::class,
88 PropertyFactory::PROPERTY_COLLECTION => PropertyCollection::class,
90 Dependency::PROPERTY_VALUE_FACTORY => PropertyValueFactory::class,
92 PropertyValueFactory::PROPERTY_VALUE => PropertyValue::class,
93 PropertyValueFactory::PROPERTY_VALUE_COLLECTION => PropertyValueCollection::class,
95 Dependency::PROPERTY_FEATURE_FACTORY => PropertyFeatureFactory::class,
96 Dependency::PROPERTY_FEATURE_REPOSITORY => PropertyFeatureRepository::class,
98 PropertyFeatureFactory::PROPERTY_FEATURE => PropertyFeature::class,
99 PropertyFeatureFactory::PROPERTY_FEATURE_COLLECTION => PropertyFeatureCollection::class,
101 Dependency::PRICE_FACTORY => PriceFactory::class,
102 Dependency::PRICE_REPOSITORY => PriceRepository::class,
104 PriceFactory::SIMPLE_PRICE => SimplePrice::class,
105 PriceFactory::QUANTITY_DEPENDENT_PRICE => QuantityDependentPrice::class,
106 PriceFactory::PRICE_COLLECTION => PriceCollection::class,
108 Dependency::IMAGE_FACTORY => ImageFactory::class,
109 Dependency::IMAGE_REPOSITORY => ImageRepository::class,
111 ImageFactory::DETAIL_IMAGE => DetailImage::class,
112 ImageFactory::PREVIEW_IMAGE => PreviewImage::class,
113 ImageFactory::MORE_PHOTO_IMAGE => MorePhotoImage::class,
114 ImageFactory::IMAGE_COLLECTION => ImageCollection::class,
116 Dependency::MEASURE_RATIO_FACTORY => MeasureRatioFactory::class,
117 Dependency::MEASURE_RATIO_REPOSITORY => MeasureRatioRepository::class,
119 MeasureRatioFactory::SIMPLE_MEASURE_RATIO => SimpleMeasureRatio::class,
120 MeasureRatioFactory::MEASURE_RATIO_COLLECTION => MeasureRatioCollection::class,
122 Dependency::BARCODE_FACTORY => BarcodeFactory::class,
123 Dependency::BARCODE_REPOSITORY => BarcodeRepository::class,
125 BarcodeFactory::BARCODE => Barcode::class,
126 BarcodeFactory::BARCODE_COLLECTION => BarcodeCollection::class,
128 Dependency::STORE_PRODUCT_FACTORY => StoreProductFactory::class,
129 Dependency::STORE_PRODUCT_REPOSITORY => StoreProductRepository::class,
131 StoreProductFactory::STORE_PRODUCT => StoreProduct::class,
132 StoreProductFactory::STORE_PRODUCT_COLLECTION => StoreProductCollection::class,
134 'sku.tree' => SkuTree::class,
136 'integration.seo.facebook.facade' => FacebookFacade::class,
137 'integration.seo.facebook.product.processor' => FacebookProductProcessor::class,
138 'integration.seo.facebook.product.repository' => FacebookProductRepository::class,