Ejemplo n.º 1
0
 public ReservationsManager(TicketReservationContext ctx, IQueryReservations reservationsQuerier, ISendEmails emailSender)
 {
     _ctx = ctx;
     _reservationsQuerier = reservationsQuerier;
     _emailSender         = emailSender;
 }
Ejemplo n.º 2
0
 public ReservationsQuerier(TicketReservationContext ctx)
 {
     _ctx = ctx;
 }
Ejemplo n.º 3
0
 public CinemaService(TicketReservationContext ctx)
 {
     _ctx = ctx;
 }
Ejemplo n.º 4
0
 public MovieService(TicketReservationContext ctx)
 {
     _ctx = ctx;
 }