public ReservationController(IReservationRepository reservationRepo, INewReservation newReservation, IProjectionRepository projectionRepo, IRoomRepository roomRepo) { this.reservationRepo = reservationRepo; this.newReservation = newReservation; this.projectionRepo = projectionRepo; this.roomRepo = roomRepo; }
public NewReservationNotExistSeatsValidation( INewReservation newReservation, IRoomRepository roomRepo, IProjectionRepository projectionRepo) { this.newReservation = newReservation; this.projectionRepo = projectionRepo; this.roomRepo = roomRepo; }
public ManageReservations(IUnitOfWork unitOfWork, UserManager <Customer> userManager, INewReservation newReservation) { _unitOfWork = unitOfWork; _userManager = userManager; _newReservation = newReservation; }
public NewReservationUniqueValidation( INewReservation newReservation, IReservationRepository reservationRepo, ITicketRepository ticketRepo) { this.newReservation = newReservation; this.reservationRepo = reservationRepo; this.ticketRepo = ticketRepo; }
public ReserveViewModel(INewReservation view) { view.GetDate += GetDate; view.GetHallName += GetHallName; view.GetMovieTitle += GetMovieTitle; view.GetSeatsLocked += GetSeatsLocket; view.ReserveSeats += ReserveSeats; Cache.WsClient.Unlock += view.Unlock; }
public ReservationController( INewReservation newReservation, IModelFactory modelFactory, IBuyTicket buyTicket, IDeleteReservation deleteReservation ) { this.newReservation = newReservation; this.deleteReservation = deleteReservation; this.buyTicket = buyTicket; this.modelFactory = modelFactory; }
public NewReservationNotExistingSeatsValidation(INewReservation newReservation, IProjectionRepository projRepo) { this.newReservation = newReservation; this.projRepo = projRepo; }
public NewReservationExistingSeatValidation(IProjectionRepository projectionRepo, IRoomRepository roomRepo, INewReservation newReservation) { this.projectionRepo = projectionRepo; this.roomRepo = roomRepo; this.newReservation = newReservation; }
public ReservationController(IReservationRepository reservationRepo, INewReservation newRes) { this.reservationRepo = reservationRepo; this.newRes = newRes; }
public NewReservationLateValidation(INewReservation newReservation, IProjectionRepository projectionsRepo) { this.projectionsRepo = projectionsRepo; this.newReservation = newReservation; }
public NewReservationFinishedProjectionValidation(INewReservation newReservation) { this.newReservation = newReservation; }
public BuyTicketWithResController(IReservationRepository reservationRepo, INewReservation newRes) { this.reservationRepo = reservationRepo; this.newRes = newRes; }
public NewReservationStartedProjectionValidation(INewReservation newReservation) { this.newReservation = newReservation; }
public ReservationController(INewReservation newReservation, ICancelReservation accessProjection) { this.newReservation = newReservation; this.accessProjection = accessProjection; }
public NewReservationStartedOrFinishedProjectionsValidation(IProjectionRepository projRepo, INewReservation newRes) { this.projRepo = projRepo; this.newRes = newRes; }
public NewReservationProjectionValidation(IProjectionRepository projRepo, INewReservation newReservation) { this.projRepo = projRepo; this.newReservation = newReservation; }
public NewReservationSeatsValidation(INewReservation newReserv, IReservatioRepository reservationRepo) { this.newReserv = newReserv; this.reservationRepo = reservationRepo; }
public ReservationController(INewReservation newReserv) { this.newReserv = newReserv; }
public NewReservationRoomValidation(INewReservation newReserv, IRoomRepository roomRepo) { this.newReserv = newReserv; this.roomRepo = roomRepo; }
public NewReservationAlreadyReservedSeatsValidation(IReservationRepository reservationRepo, INewReservation newRes) { this.reservationRepo = reservationRepo; this.newRes = newRes; }
public NewReservationReservedSeatsValidation(IReservationRepository reserveRepo, INewReservation newReservation) { this.reserveRepo = reserveRepo; this.newReservation = newReservation; }
public NewReservationExistingSeatsValidation(IReservationRepository reservationRepo, INewReservation newRes) { this.reservationRepo = reservationRepo; this.newRes = newRes; }
public NewReservationAvailableSeatValidation(IReservationRepository reservationRepo, INewReservation newReservation) { this.reservationRepo = reservationRepo; this.newReservation = newReservation; }
public NewReservationCheckIfSeatAvailableValidation(IProjectionRepository projRepo, INewReservation newReservation) { this.projRepo = projRepo; this.newReservation = newReservation; }