예제 #1
0
 public SeanceInfoController(ISeanceService seanceService, IFilmService filmService, IBusySeatService seatsBusyService, ICinemaService cinemaService)
 {
     _seanceService    = seanceService;
     _filmService      = filmService;
     _seatsBusyService = seatsBusyService;
     _cinemaService    = cinemaService;
 }
예제 #2
0
 public OrderService(IUserService userService, IBusySeatService seatsBusyService, ISeanceService seanceService, DB_Context context)
 {
     _userService      = userService;
     _seatsBusyService = seatsBusyService;
     _seanceService    = seanceService;
     unitOfWork        = new UnitOfWork(context);
 }
예제 #3
0
 public SeanceService(DB_Context context, IFilmService filmService, IBusySeatService busyseatService)
 {
     unitOfWork       = new UnitOfWork(context);
     _filmService     = filmService;
     _busyseatService = busyseatService;
 }
예제 #4
0
 public BusySeatsController(IBusySeatService seatsBusyService)
 {
     _seatsBusyService = seatsBusyService;
 }