public HotelRoomCategoryService(IRepositoryContext repositoryContext, IRoomRepository roomRepository
                                 , IHotelRoomCategoryRepository hotelRoomCategoryRepository)
 {
     this.repositoryContext           = repositoryContext;
     this.roomRepository              = roomRepository;
     this.hotelRoomCategoryRepository = hotelRoomCategoryRepository;
 }
Esempio n. 2
0
 public HotelPromotionRoomCategoryService(IRepositoryContext repositoryContext, IHotelRoomCategoryRepository hotelRoomCategoryRepository
                                          , IHotelPromotionRepository <HotelPromotion> hotelPromotionRepository)
 {
     this.repositoryContext           = repositoryContext;
     this.hotelRoomCategoryRepository = hotelRoomCategoryRepository;
     this.hotelPromotionRepository    = hotelPromotionRepository;
 }
Esempio n. 3
0
 public RoomService(IRepositoryContext context, IRoomRepository roomRepository
                    , IHotelRoomCategoryRepository hotelRoomCategoryRepository
                    , IReservationRepository reservationRepository
                    , IHotelRoomCategoryService hotelRoomCategoryService) : base(context)
 {
     this.roomRepository = roomRepository;
     this.hotelRoomCategoryRepository = hotelRoomCategoryRepository;
     this.reservationRepository       = reservationRepository;
     this.hotelRoomCategoryService    = hotelRoomCategoryService;
 }
Esempio n. 4
0
 public HotelPromotionService(IRepositoryContext context, IHotelPromotionRepository <TAgregate> hotelPromotionRepository
                              , IHotelRepository hotelRepository
                              , ICustomerRoleRepository customerRoleRepository
                              , IHotelRoomCategoryRepository hotelRoomCategoryRepository
                              , IHotelPromotionCustomerRoleService hotelPromotionCustomerRoleService
                              , IHotelPromotionRoomCategoryService hotelPromotionRoomCategoryService) : base(context)
 {
     this.hotelPromotionRepository          = hotelPromotionRepository;
     this.hotelRepository                   = hotelRepository;
     this.customerRoleRepository            = customerRoleRepository;
     this.hotelRoomCategoryRepository       = hotelRoomCategoryRepository;
     this.hotelPromotionCustomerRoleService = hotelPromotionCustomerRoleService;
     this.hotelPromotionRoomCategoryService = hotelPromotionRoomCategoryService;
 }
 public DiscountPromotionService(IRepositoryContext context
                                 , IDiscountPromotionRepository hotelPromotionRepository
                                 , IHotelRepository hotelRepository
                                 , ICustomerRoleRepository customerRoleRepository
                                 , IHotelRoomCategoryRepository hotelRoomCategoryRepository
                                 , IHotelPromotionCustomerRoleService hotelPromotionCustomerRoleService
                                 , IHotelPromotionRoomCategoryService hotelPromotionRoomCategoryService)
     : base(context
            , hotelPromotionRepository
            , hotelRepository
            , customerRoleRepository
            , hotelRoomCategoryRepository
            , hotelPromotionCustomerRoleService
            , hotelPromotionRoomCategoryService)
 {
 }