Exemplo n.º 1
0
        public SaveExOzProductpOtionCommandHandler(IExOzProductOptionRepository exOzProductOptionRepository, IExOzProductSessionRepository exOzProductSessionRepository, IExOzProductRepository exOzProductRepository, IEventTicketDetailRepository eventTicketDetailRepository, IEventTicketAttributeRepository eventTicketAttributeRepository, ITicketCategoryRepository ticketCategoryRepository, ITicketFeeDetailRepository ticketFeeDetailRepository, IMediator mediator)
            : base(mediator)
        {
            _exOzProductOptionRepository  = exOzProductOptionRepository;
            _exOzProductSessionRepository = exOzProductSessionRepository;
            _exOzProductRepository        = exOzProductRepository;

            _ticketCategoryRepository       = ticketCategoryRepository;
            _eventTicketDetailRepository    = eventTicketDetailRepository;
            _eventTicketAttributeRepository = eventTicketAttributeRepository;
            _ticketFeeDetailRepository      = ticketFeeDetailRepository;
        }
Exemplo n.º 2
0
 public SaveExOzSessionCommandHandler(IExOzProductSessionRepository exOzProductSessionRepository, IEventTicketDetailRepository eventTicketDetailRepository, ITicketCategoryRepository ticketCategoryRepository, IExOzProductRepository exOzProductRepository, IMediator mediator)
     : base(mediator)
 {
     _exOzProductSessionRepository = exOzProductSessionRepository;
     _exOzProductRepository        = exOzProductRepository;
 }