@@ -26,7 +26,7 @@ public partial class DeliveryTimeService : IDeliveryTimeService
2626
2727 private readonly IRepository < DeliveryTime > _deliveryTimeRepository ;
2828 private readonly IRepository < Product > _productRepository ;
29- private readonly IRepository < ProductVariantAttributeCombination > _productVariantAttrCombinationRepository ;
29+ private readonly IRepository < ProductVariantAttributeCombination > _attributeCombinationRepository ;
3030 private readonly ICacheManager _cacheManager ;
3131 private readonly ICustomerService _customerService ;
3232 //private readonly CurrencySettings _currencySettings;
@@ -49,7 +49,7 @@ public partial class DeliveryTimeService : IDeliveryTimeService
4949 public DeliveryTimeService ( ICacheManager cacheManager ,
5050 IRepository < DeliveryTime > deliveryTimeRepository ,
5151 IRepository < Product > productRepository ,
52- IRepository < ProductVariantAttributeCombination > productVariantAttrCombinationRepository ,
52+ IRepository < ProductVariantAttributeCombination > attributeCombinationRepository ,
5353 ICustomerService customerService ,
5454 IPluginFinder pluginFinder ,
5555 IEventPublisher eventPublisher )
@@ -61,7 +61,7 @@ public DeliveryTimeService(ICacheManager cacheManager,
6161 this . _pluginFinder = pluginFinder ;
6262 this . _eventPublisher = eventPublisher ;
6363 this . _productRepository = productRepository ;
64- this . _productVariantAttrCombinationRepository = productVariantAttrCombinationRepository ;
64+ this . _attributeCombinationRepository = attributeCombinationRepository ;
6565 }
6666
6767 #endregion
0 commit comments