Exemplo n.º 1
0
 public NewReservationSeatsValidation(INewReservation newReserv, IReservatioRepository reservationRepo)
 {
     this.newReserv       = newReserv;
     this.reservationRepo = reservationRepo;
 }
Exemplo n.º 2
0
 public NewReservationCreation(IReservatioRepository reservationRepo, IProjectionRepository projectionRepo, IRoomRepository roomRepo)
 {
     this.reservationRepo = reservationRepo;
     this.projectionRepo  = projectionRepo;
     this.roomRepo        = roomRepo;
 }
Exemplo n.º 3
0
 public NewTicketReservationValidation(INewTicket newTicket, IReservatioRepository reservationRepo)
 {
     this.reservationRepo = reservationRepo;
     this.newTicket       = newTicket;
 }
Exemplo n.º 4
0
 public NewTicketSeatsValidation(INewTicket newTicket, ITicketRepository ticketRepo, IReservatioRepository reservationRepo)
 {
     this.reservationRepo = reservationRepo;
     this.ticketRepo      = ticketRepo;
     this.newTicket       = newTicket;
 }