예제 #1
0
 public YachtTourPricingService(YachtOperatorDbContext db,
                                IMapper mapper,
                                IYachtService yachtService,
                                ICommonValueRequestService commonValueRequestService)
 {
     _db           = db;
     _mapper       = mapper;
     _yachtService = yachtService;
     _commonValueRequestService = commonValueRequestService;
 }
예제 #2
0
 public YachtTourServices(YachtOperatorDbContext db,
                          IYachtService yachtService,
                          ILocationRequestService locationRequestService,
                          IYachtTourOperationDetailService yachtTourOperationDetailService,
                          IMapper mapper)
 {
     _db                              = db;
     _mapper                          = mapper;
     _yachtService                    = yachtService;
     _locationRequestService          = locationRequestService;
     _yachtTourOperationDetailService = yachtTourOperationDetailService;
 }
예제 #3
0
 public YachtController(IYachtService yachtService, IPortLocationService portLocationService)
 {
     _yachtService = yachtService;
 }
 public YachtTourNonOperationDayService(YachtOperatorDbContext db, IMapper mapper, IYachtService yachtsService)
 {
     _db           = db;
     _mapper       = mapper;
     _yachtService = yachtsService;
 }
예제 #5
0
 public YachtController(
     IYachtService yachtService)
 {
     _yachtService = yachtService;
 }