예제 #1
0
 public YachtCharteringService(AQYachtContext searchContext
                               , IMapper mapper
                               , IDistributedCache distributedCache
                               , IYachtPricingPlanDetailService yachtPricingPlanDetailService
                               , IYachtMerchantProductInventoryService yachtMerchantProductInventoryService
                               )
 {
     _aqYachtContext   = searchContext;
     _mapper           = mapper;
     _distributedCache = distributedCache;
     _yachtPricingPlanDetailService        = yachtPricingPlanDetailService;
     _yachtMerchantProductInventoryService = yachtMerchantProductInventoryService;
 }
예제 #2
0
 public YachtMerchantProductPricingController(IYachtMerchantProductInventoryService yachtMerchantProductInventoryService)
 {
     _yachtMerchantProductInventoryService = yachtMerchantProductInventoryService;
     _yachtMerchantProductInventoryService.InitController(this);
 }
 public YachtMerchantProductInventoryController(IYachtMerchantProductInventoryService yachtMerchantProductInventorService)
 {
     _yachtMerchantProductInventorService = yachtMerchantProductInventorService;
 }