// saves the form
        // links:
        //  docLink: http://sql2x.org/documentationLink/c9522930-91f8-4468-a936-8030bb2a6482
        private void buttonSave_Click(object sender, EventArgs e)
        {
            var service = new CrudeBookingFlightSegmentServiceClient();

            try {
                _contract.DefaultStateRcd = defaultStateRefCombo.Text;
                _contract.UserId          = (Guid)userPicker.SelectedValue;

                if (_isNew)
                {
                    service.Insert(_contract);
                }
                else
                {
                    service.Update(_contract);
                }
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                service.Close();
            }

            Close();
        }
Exemple #2
0
        // refresh the grid
        // links:
        //  docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f
        public void RefreshCrudeBookingFlightSegment()
        {
            var bookingFlightSegment = new CrudeBookingFlightSegmentServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = bookingFlightSegment.FetchWithFilter(
                    Guid.Empty
                    , Guid.Empty
                    , Guid.Empty
                    , Guid.Empty
                    , Guid.Empty
                    , defaultStateRefCombo.Text
                    , Guid.Empty
                    , DateTime.MinValue
                    );
                dataGridViewCrudeBookingFlightSegment.AutoGenerateColumns = false;
                dataGridViewCrudeBookingFlightSegment.DataSource          = bindingSource;
                dataGridViewCrudeBookingFlightSegment.AutoResizeColumns();
                dataGridViewCrudeBookingFlightSegment.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                bookingFlightSegment.Close();
            }
        }
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid bookingFlightSegmentId)
        {
            var service = new CrudeBookingFlightSegmentServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByBookingFlightSegmentId(bookingFlightSegmentId);
                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();
            }
        }
Exemple #4
0
        public ActionResult CrudeBookingFlightSegmentEdit(
            System.Guid bookingFlightSegmentId
            )
        {
            CrudeBookingFlightSegmentContract contract = new CrudeBookingFlightSegmentServiceClient().FetchByBookingFlightSegmentId(bookingFlightSegmentId);

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

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


            return(View(
                       "~/Views/Crude/Booking/CrudeBookingFlightSegment/CrudeBookingFlightSegmentEdit.cshtml",
                       contract
                       ));
        }