import AttributeGroupController from './AttributeGroupController'
import ProductAttributeController from './ProductAttributeController'
import FuelTypeController from './FuelTypeController'
import BodyStyleController from './BodyStyleController'
import DriveTrainController from './DriveTrainController'
import ManufacturerController from './ManufacturerController'
import VehicleMakeController from './VehicleMakeController'
import VehicleGenerationController from './VehicleGenerationController'
import VehicleModelController from './VehicleModelController'
import VehicleEngineController from './VehicleEngineController'
import VehicleGearboxController from './VehicleGearboxController'
import VehicleVariantController from './VehicleVariantController'
import BlogCategoryController from './BlogCategoryController'
import BlogTagController from './BlogTagController'
import CustomerController from './CustomerController'
import OrderController from './OrderController'
import WebhookEndpointController from './WebhookEndpointController'
import WebhookDeliveryController from './WebhookDeliveryController'

const Management = {
    AttributeGroupController: Object.assign(AttributeGroupController, AttributeGroupController),
    ProductAttributeController: Object.assign(ProductAttributeController, ProductAttributeController),
    FuelTypeController: Object.assign(FuelTypeController, FuelTypeController),
    BodyStyleController: Object.assign(BodyStyleController, BodyStyleController),
    DriveTrainController: Object.assign(DriveTrainController, DriveTrainController),
    ManufacturerController: Object.assign(ManufacturerController, ManufacturerController),
    VehicleMakeController: Object.assign(VehicleMakeController, VehicleMakeController),
    VehicleGenerationController: Object.assign(VehicleGenerationController, VehicleGenerationController),
    VehicleModelController: Object.assign(VehicleModelController, VehicleModelController),
    VehicleEngineController: Object.assign(VehicleEngineController, VehicleEngineController),
    VehicleGearboxController: Object.assign(VehicleGearboxController, VehicleGearboxController),
    VehicleVariantController: Object.assign(VehicleVariantController, VehicleVariantController),
    BlogCategoryController: Object.assign(BlogCategoryController, BlogCategoryController),
    BlogTagController: Object.assign(BlogTagController, BlogTagController),
    CustomerController: Object.assign(CustomerController, CustomerController),
    OrderController: Object.assign(OrderController, OrderController),
    WebhookEndpointController: Object.assign(WebhookEndpointController, WebhookEndpointController),
    WebhookDeliveryController: Object.assign(WebhookDeliveryController, WebhookDeliveryController),
}

export default Management