コード例 #1
0
 public ShowingsController(IShowingsService showingsService)
 {
     _showingsService = showingsService;
 }
コード例 #2
0
 public ReservationsController(IHubContext <ReservationHub> hubContext, IShowingsService showingsService, IReservationsService reservationsService)
 {
     _hubContext          = hubContext;
     _showingsService     = showingsService;
     _reservationsService = reservationsService;
 }