public HotelController(IHotelService hotelService, IHotelChainService hotelChainService)
 {
     this.hotelService      = hotelService;
     this.hotelChainService = hotelChainService;
 }
 public HotelController(IHotelService hotelService, IHotelChainService hotelChainService)
 {
     this.hotelService = hotelService;
     this.hotelChainService = hotelChainService;
 }
 public WorkersController(IHotelChainService hotelChainService, IMapper mapper)
 {
     this._hotelChainService = hotelChainService;
     this._mapper            = mapper;
 }
Example #4
0
 public ChainController(IHotelChainService hotelChainService, IHotelService hotelRepository, IMapper mapper)
 {
     this._hotelChainService = hotelChainService;
     this._hotelRepository   = hotelRepository;
     this._mapper            = mapper;
 }