Exemplo n.º 1
0
        // 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 CrudeBookingContactMethodServiceClient();

            try {
                _contract.ContactMethodRcd = contactMethodRefCombo.Text;
                _contract.ContactMethodWay = textBoxContactMethodWay.Text;
                _contract.Comment          = textBoxComment.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();
        }
        // refresh the grid
        // links:
        //  docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f
        public void RefreshCrudeBookingContactMethod()
        {
            var bookingContactMethod = new CrudeBookingContactMethodServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = bookingContactMethod.FetchWithFilter(
                    Guid.Empty
                    , Guid.Empty
                    , contactMethodRefCombo.Text
                    , textBoxContactMethodWay.Text
                    , textBoxComment.Text
                    , Guid.Empty
                    , DateTime.MinValue
                    );
                dataGridViewCrudeBookingContactMethod.AutoGenerateColumns = false;
                dataGridViewCrudeBookingContactMethod.DataSource          = bindingSource;
                dataGridViewCrudeBookingContactMethod.AutoResizeColumns();
                dataGridViewCrudeBookingContactMethod.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                bookingContactMethod.Close();
            }
        }
Exemplo n.º 3
0
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid bookingContactMethodId)
        {
            var service = new CrudeBookingContactMethodServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByBookingContactMethodId(bookingContactMethodId);
                contactMethodRefCombo.Text   = _contract.ContactMethodRcd != null ? _contract.ContactMethodRcd : String.Empty;
                textBoxContactMethodWay.Text = _contract.ContactMethodWay;
                textBoxComment.Text          = _contract.Comment;
                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();
            }
        }
Exemplo n.º 4
0
        public void RefreshCrudeBookingContactMethod()
        {
            var crudeBookingContactMethod = new CrudeBookingContactMethodServiceClient();
            var bindingSource             = new BindingSource();

            try {
                bindingSource.DataSource =
                    crudeBookingContactMethod.FetchByBookingId(
                        _bookingContract.Booking.BookingId
                        );

                dataGridViewCrudeBookingContactMethod.AutoGenerateColumns = false;
                dataGridViewCrudeBookingContactMethod.DataSource          = bindingSource;
                dataGridViewCrudeBookingContactMethod.AutoResizeColumns();
                dataGridViewCrudeBookingContactMethod.Refresh();
            } catch (Exception ex) {
                MessageBox.Show(ex.Message);
            } finally {
                crudeBookingContactMethod.Close();
            }
        }
        public ActionResult CrudeBookingContactMethodEdit(
            System.Guid bookingContactMethodId
            )
        {
            CrudeBookingContactMethodContract contract = new CrudeBookingContactMethodServiceClient().FetchByBookingContactMethodId(bookingContactMethodId);

            ViewBag.ContactMethodRcd =
                new SelectList(new CrudeContactMethodRefServiceClient().FetchAll(),
                               "ContactMethodRcd",
                               "ContactMethodName",
                               contract.ContactMethodRcd
                               );

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


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