public OrderService(IAccountService userService, ISeatsBusyService seatsBusyService, ISeanceService seanceService, IUnitOfWork _unitOfWork) { _userService = userService; _seatsBusyService = seatsBusyService; _seanceService = seanceService; unitOfWork = _unitOfWork; }
public SeanceService(IUnitOfWork unitOfWork, IFilmsService filmService, ISeatsBusyService seatsBusyService) { _unitOfWork = unitOfWork; _filmService = filmService; _seatsBusyService = seatsBusyService; }
public BookingController(ISeatsBusyService seatsBusyService, IOrderService orderService) { _seatBusyService = seatsBusyService; _orderService = orderService; }
public SeatsBusiesController(ISeatsBusyService seatsBusyService) { _seatBusyService = seatsBusyService; }