Ejemplo n.º 1
0
 public ShowingsController(IShowingsService showingsService)
 {
     _showingsService = showingsService;
 }
Ejemplo n.º 2
0
 public ReservationsController(IHubContext <ReservationHub> hubContext, IShowingsService showingsService, IReservationsService reservationsService)
 {
     _hubContext          = hubContext;
     _showingsService     = showingsService;
     _reservationsService = reservationsService;
 }