예제 #1
0
 public ParkingSettingController(
     IParkingSettingService parkingSettingService,
     IMapper mapper,
     IOptions <AppSettings> appSettings)
 {
     _parkingSettingService = parkingSettingService;
     _mapper      = mapper;
     _appSettings = appSettings.Value;
 }
예제 #2
0
 public BookingController(
     IParkingSettingService parkingSettingService,
     IBookingService bookingService,
     IPriceService priceService,
     IMapper mapper,
     IOptions <AppSettings> appSettings)
 {
     _parkingSettingService = parkingSettingService;
     _bookingService        = bookingService;
     _priceService          = priceService;
     _mapper      = mapper;
     _appSettings = appSettings.Value;
 }