// 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 CrudeServiceCarRentalServiceClient();

            try {
                _contract.CarName             = textBoxCarName.Text;
                _contract.DayPriceAmount      = maskedTextBoxDayPriceAmount.Text == String.Empty ? 0 : Convert.ToDecimal(maskedTextBoxDayPriceAmount.Text);
                _contract.FinancialCurrencyId = (Guid)financialCurrencyPicker.SelectedValue;
                _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();
        }
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid serviceCarRentalId)
        {
            var service = new CrudeServiceCarRentalServiceClient();

            _isNew = false;
            try {
                _contract           = service.FetchByServiceCarRentalId(serviceCarRentalId);
                textBoxCarName.Text = _contract.CarName;
                maskedTextBoxDayPriceAmount.Text      = _contract.DayPriceAmount.ToString();
                financialCurrencyPicker.SelectedValue = _contract.FinancialCurrencyId;
                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();
            }
        }
        public ActionResult CrudeServiceCarRentalEdit(
            System.Guid serviceCarRentalId
            )
        {
            CrudeServiceCarRentalContract contract = new CrudeServiceCarRentalServiceClient().FetchByServiceCarRentalId(serviceCarRentalId);

            ViewBag.FinancialCurrencyId =
                new SelectList(new CrudeFinancialCurrencyServiceClient().FetchAll(),
                               "FinancialCurrencyId",
                               "FinancialCurrencyTypeName",
                               contract.FinancialCurrencyId
                               );

            ViewBag.ProductId =
                new SelectList(new CrudeProductServiceClient().FetchAll(),
                               "ProductId",
                               "ProductName",
                               contract.ProductId
                               );

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


            return(View(
                       "~/Views/Crude/Service/CrudeServiceCarRental/CrudeServiceCarRentalEdit.cshtml",
                       contract
                       ));
        }
Esempio n. 4
0
        // refresh the grid
        // links:
        //  docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f
        public void RefreshCrudeServiceCarRental()
        {
            var serviceCarRental = new CrudeServiceCarRentalServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = serviceCarRental.FetchWithFilter(
                    Guid.Empty
                    , textBoxCarName.Text
                    , maskedTextBoxDayPriceAmount.Text == String.Empty ? 0 : Convert.ToDecimal(maskedTextBoxDayPriceAmount.Text)
                    , financialCurrencyPicker.SelectedValue
                    , Guid.Empty
                    , Guid.Empty
                    , Guid.Empty
                    , DateTime.MinValue
                    );
                dataGridViewCrudeServiceCarRental.AutoGenerateColumns = false;
                dataGridViewCrudeServiceCarRental.DataSource          = bindingSource;
                dataGridViewCrudeServiceCarRental.AutoResizeColumns();
                dataGridViewCrudeServiceCarRental.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                serviceCarRental.Close();
            }
        }
Esempio n. 5
0
        // populates the Picker with the first match from the SOAP service
        // links:
        //  docLink: http://sql2x.org/documentationLink/3e8b9e1a-39eb-444f-9632-ce3406db3534
        private void txtServiceCarRentalCode_Validating(object sender, CancelEventArgs e)
        {
            if (!DesignMode)
            {
                // empty picker on no code
                if (string.IsNullOrEmpty(txtServiceCarRentalCode.Text))
                {
                    _serviceCarRentalId          = Guid.Empty;
                    txtServiceCarRentalName.Text = string.Empty;
                    txtServiceCarRentalCode.Text = string.Empty;
                    return;
                }

                CrudeServiceCarRentalServiceClient serviceCarRental = null;

                try {
                    serviceCarRental = new CrudeServiceCarRentalServiceClient();
                    CrudeServiceCarRentalContract contract = serviceCarRental.FetchByCarName(txtServiceCarRentalCode.Text);

                    if (contract != null)
                    {
                        txtServiceCarRentalCode.Text = contract.CarName;
                        txtServiceCarRentalName.Text = contract.CarName;
                        _serviceCarRentalId          = contract.ServiceCarRentalId;
                    }
                } catch (Exception ex) {
                    MessageBox.Show(ex.Message);
                } finally {
                    if (serviceCarRental != null)
                    {
                        serviceCarRental.Close();
                    }
                }

                if (this.Picked != null)
                {
                    this.Picked(new object(), new EventArgs());
                }
            }
        }