// shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid bookingPassengerId)
        {
            var service = new CrudeBookingPassengerServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByBookingPassengerId(bookingPassengerId);
                passengerPicker.SelectedValue = _contract.PassengerId;
                defaultStateRefCombo.Text     = _contract.DefaultStateRcd != null ? _contract.DefaultStateRcd : String.Empty;
                userPicker.SelectedValue      = _contract.UserId;
                _contract.DateTime            = DateTime.UtcNow;
                dateTimePickerDateTime.Text   = _contract.DateTime.ToString();

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                service.Close();
            }
        }
        // shows the form with default values for comboboxes and pickers
        // links:
        //  docLink: http://sql2x.org/documentationLink/f5685d96-a0bb-4f7b-beaa-b3d578c7cf28
        public void ShowAsAdd(System.Guid becameBookingPassengerId, System.Guid bindingBookingPassengerId, System.Guid bookingId, System.Guid passengerId, string defaultStateRcd, System.Guid userId)
        {
            try {
                _contract = new CrudeBookingPassengerContract();
                _isNew    = true;
                _contract.BecameBookingPassengerId  = becameBookingPassengerId;
                _contract.BindingBookingPassengerId = bindingBookingPassengerId;
                _contract.BookingId           = bookingId;
                _contract.PassengerId         = passengerId;
                passengerPicker.SelectedValue = _contract.PassengerId;
                _contract.DefaultStateRcd     = defaultStateRcd;
                _contract.UserId            = userId;
                userPicker.SelectedValue    = userId;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            }
        }
        public ActionResult CrudeBookingPassengerCreate(System.Guid?becameBookingPassengerId, System.Guid?bindingBookingPassengerId, System.Guid?bookingId, System.Guid?passengerId, System.Guid?userId)
        {
            var contract = new CrudeBookingPassengerContract();

            if (becameBookingPassengerId != null)
            {
                contract.BecameBookingPassengerId = (System.Guid)becameBookingPassengerId;
            }
            if (bindingBookingPassengerId != null)
            {
                contract.BindingBookingPassengerId = (System.Guid)bindingBookingPassengerId;
            }
            if (bookingId != null)
            {
                contract.BookingId = (System.Guid)bookingId;
            }
            if (passengerId != null)
            {
                contract.PassengerId = (System.Guid)passengerId;
            }
            if (userId != null)
            {
                contract.UserId = (System.Guid)userId;
            }

            ViewBag.PassengerId =
                new SelectList(new CrudePassengerServiceClient().FetchAll(),
                               "PassengerId",
                               "PassengerName",
                               contract.PassengerId
                               );

            ViewBag.DefaultStateRcd =
                new SelectList(new CrudeDefaultStateRefServiceClient().FetchAll(),
                               "DefaultStateRcd",
                               "DefaultStateName",
                               contract.DefaultStateRcd
                               );

            if (userId == null)
            {
                contract.UserId = new System.Guid("{FFFFFFFF-5555-5555-5555-FFFFFFFFFFFF}");
            }

            ViewBag.DefaultUserName =
                new CrudeDefaultUserServiceClient().FetchByDefaultUserId(contract.UserId).DefaultUserName;

            contract.DateTime = DateTime.UtcNow;


            return(View(
                       "~/Views/Crude/Booking/CrudeBookingPassenger/CrudeBookingPassengerCreate.cshtml",
                       contract
                       ));
        }
        public ActionResult CrudeBookingPassengerCreate([Bind()] CrudeBookingPassengerContract contract)
        {
            if (ModelState.IsValid)
            {
                new CrudeBookingPassengerServiceClient().Insert(contract);

                return(RedirectToAction("CrudeBookingPassengerIndex"));
            }

            return(View(
                       "~/Views/Crude/Booking/CrudeBookingPassenger/CrudeBookingPassengerCreate.cshtml",
                       contract
                       ));
        }
        public ActionResult CrudeBookingPassengerEdit([Bind()] CrudeBookingPassengerContract contract)
        {
            if (ModelState.IsValid)
            {
                contract.DateTime = DateTime.UtcNow;

                new CrudeBookingPassengerServiceClient().Update(contract);

                return(RedirectToAction("CrudeBookingPassengerIndex"));
            }

            return(View(
                       "~/Views/Crude/Booking/CrudeBookingPassenger/CrudeBookingPassengerEdit.cshtml",
                       contract
                       ));
        }
 // shows the form with default values for comboboxes and pickers
 // links:
 //  docLink: http://sql2x.org/documentationLink/e04d0806-55ef-41cc-8669-acf0ddd850c7
 public void ShowAsAdd()
 {
     try {
         _contract  = new CrudeBookingPassengerContract();
         _isNew     = true;
         this.Text += " - Not Savable (BindingBookingPassenger,Booking Missing)";
         Show();
     } catch (Exception ex) {
         if (ex == null)
         {
         }
         else
         {
             System.Diagnostics.Debugger.Break();
         }
     }
 }
        // shows by foreign keys
        // links:
        //  docLink: http://sql2x.org/documentationLink/f21e72c1-2d57-44c1-a9c1-1b80bad6a391
        public void ShowAsAddByBooking(System.Guid bookingId)
        {
            try {
                _contract                   = new CrudeBookingPassengerContract();
                _isNew                      = true;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();
                _contract.BookingId         = bookingId;

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            }
        }