Ejemplo n.º 1
0
 public ConfirmationsController(BookingFormContext context)
 {
     _context = context;
     _batch   = _context.GetRunningBatch();
     if (_batch == null)
     {
         throw new NullReferenceException(nameof(Batch));
     }
 }
Ejemplo n.º 2
0
        public ReservationsController(BookingFormContext context, IRecaptchaService recaptcha)
        {
            _recaptcha = recaptcha;
            _context   = context;
            _batch     = _context.GetRunningBatch();

            if (_batch == null)
            {
                throw new NullReferenceException(nameof(Batch));
            }
        }