Пример #1
0
 public HotelRoomTypeServices(PXHotelEntities entities)
 {
     _localizedResourceServices  = HostContainer.GetInstance <ILocalizedResourceServices>();
     _hotelServiceServices       = HostContainer.GetInstance <IHotelServiceServices>();
     _hotelRoomTypeRepository    = new HotelRoomTypeRepository(entities);
     _hotelRoomServiceRepository = new HotelRoomServiceRepository(entities);
     _hotelRoomImageRepository   = new HotelRoomImageRepository(entities);
 }
Пример #2
0
 public HotelRoomTypeServices(PXHotelEntities entities)
 {
     _localizedResourceServices = HostContainer.GetInstance<ILocalizedResourceServices>();
     _hotelServiceServices = HostContainer.GetInstance<IHotelServiceServices>();
     _hotelRoomTypeRepository = new HotelRoomTypeRepository(entities);
     _hotelRoomServiceRepository = new HotelRoomServiceRepository(entities);
     _hotelRoomImageRepository = new HotelRoomImageRepository(entities);
 }
Пример #3
0
 public HotelServicesController(IHotelServiceServices hotelServiceServices)
 {
     _hotelServiceServices = hotelServiceServices;
 }
Пример #4
0
 public HotelRoomTypesController(IHotelRoomTypeServices hotelRoomTypeServices, IHotelServiceServices hotelServiceServices)
 {
     _hotelRoomTypeServices = hotelRoomTypeServices;
     _hotelServiceServices  = hotelServiceServices;
 }
Пример #5
0
 public HotelRoomTypesController(IHotelRoomTypeServices hotelRoomTypeServices, IHotelServiceServices hotelServiceServices)
 {
     _hotelRoomTypeServices = hotelRoomTypeServices;
     _hotelServiceServices = hotelServiceServices;
 }
Пример #6
0
 public HotelServicesController(IHotelServiceServices hotelServiceServices)
 {
     _hotelServiceServices = hotelServiceServices;
 }