Exemple #1
0
 public FileController(ISeatingRepository seatingRepository, IIntermediateRepository intermediateRepository, DataContext context, IWebHostEnvironment env)
 {
     _seatingRepository      = seatingRepository;
     _intermediateRepository = intermediateRepository;
     _context = context;
     _env     = env;
 }
        public SeatingController(ISeatingRepository seatingRepository,
                                 IIntermediateRepository intermediateRepository,
                                 ISeatingCore seatingCore,
                                 INoticeBoardService noticeBoardService)

        {
            _seatingRepository      = seatingRepository;
            _intermediateRepository = intermediateRepository;
            _seatingCore            = seatingCore;
            _noticeBoardService     = noticeBoardService;
        }
 public UpdateSeatOccupancyWhenTicketCreatedDomainEventHandler(ISeatingRepository seatingRepository)
 {
     _seatingRepository = seatingRepository;
 }
Exemple #4
0
 public PdfReaderService(ISeatingRepository seatingRepository)
 {
     _seatingRepository = seatingRepository;
 }
 public CreateTicketHandler(ITicketRepository ticketRepository, ICustomerRepository customerRepository, ISeatingRepository seatingRepository)
 {
     _ticketRepository   = ticketRepository;
     _customerRepository = customerRepository;
     _seatingRepository  = seatingRepository;
 }
Exemple #6
0
 public SeatingsController(ISeatingRepository seatingRepository)
 {
     _seatingRepository = seatingRepository;
 }
Exemple #7
0
 public AddSeatingAggregateWhenSectionCreatedDomainEventHandler(ISeatingRepository seatingRepository)
 {
     _seatingRepository = seatingRepository;
 }