public YachtCharteringService(AQYachtContext searchContext
                               , IMapper mapper
                               , IDistributedCache distributedCache
                               , IYachtPricingPlanDetailService yachtPricingPlanDetailService
                               , IYachtMerchantProductInventoryService yachtMerchantProductInventoryService
                               )
 {
     _aqYachtContext   = searchContext;
     _mapper           = mapper;
     _distributedCache = distributedCache;
     _yachtPricingPlanDetailService        = yachtPricingPlanDetailService;
     _yachtMerchantProductInventoryService = yachtMerchantProductInventoryService;
 }
 public YachtPricingPlanDetailController(IYachtPricingPlanDetailService yachtPricingPlanDetailService)
 {
     _yachtPricingPlanDetailService = yachtPricingPlanDetailService;
 }