示例#1
0
 public ReservationsManager(TicketReservationContext ctx, IQueryReservations reservationsQuerier, ISendEmails emailSender)
 {
     _ctx = ctx;
     _reservationsQuerier = reservationsQuerier;
     _emailSender         = emailSender;
 }
示例#2
0
 public ReservationsQuerier(TicketReservationContext ctx)
 {
     _ctx = ctx;
 }
 public CinemaService(TicketReservationContext ctx)
 {
     _ctx = ctx;
 }
示例#4
0
 public MovieService(TicketReservationContext ctx)
 {
     _ctx = ctx;
 }