Browse Source

chore(core): tidy up unused imports

Michael Bromley 2 years ago
parent
commit
b99d238ad3
1 changed files with 0 additions and 7 deletions
  1. 0 7
      packages/core/src/service/services/product.service.ts

+ 0 - 7
packages/core/src/service/services/product.service.ts

@@ -2,7 +2,6 @@ import { Injectable } from '@nestjs/common';
 import {
     AssignProductsToChannelInput,
     CreateProductInput,
-    CustomerListOptions,
     DeletionResponse,
     DeletionResult,
     ProductListOptions,
@@ -41,12 +40,9 @@ import { TranslatorService } from '../helpers/translator/translator.service';
 
 import { AssetService } from './asset.service';
 import { ChannelService } from './channel.service';
-import { CollectionService } from './collection.service';
 import { FacetValueService } from './facet-value.service';
 import { ProductOptionGroupService } from './product-option-group.service';
 import { ProductVariantService } from './product-variant.service';
-import { RoleService } from './role.service';
-import { TaxRateService } from './tax-rate.service';
 
 /**
  * @description
@@ -61,12 +57,9 @@ export class ProductService {
     constructor(
         private connection: TransactionalConnection,
         private channelService: ChannelService,
-        private roleService: RoleService,
         private assetService: AssetService,
         private productVariantService: ProductVariantService,
         private facetValueService: FacetValueService,
-        private taxRateService: TaxRateService,
-        private collectionService: CollectionService,
         private listQueryBuilder: ListQueryBuilder,
         private translatableSaver: TranslatableSaver,
         private eventBus: EventBus,