コード例 #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 CrudeCityServiceClient();

            try {
                _contract.CountryId = (Guid)countryPicker.SelectedValue;
                _contract.CityCode  = textBoxCityCode.Text;
                _contract.CityName  = textBoxCityName.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();
        }
コード例 #2
0
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid cityId)
        {
            var service = new CrudeCityServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByCityId(cityId);
                countryPicker.SelectedValue = _contract.CountryId;
                textBoxCityCode.Text        = _contract.CityCode;
                textBoxCityName.Text        = _contract.CityName;
                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();
            }
        }
コード例 #3
0
ファイル: CrudeCityController.cs プロジェクト: jacov/nor-port
        public ActionResult CrudeCityEdit(
            System.Guid cityId
            )
        {
            CrudeCityContract contract = new CrudeCityServiceClient().FetchByCityId(cityId);

            ViewBag.CountryId =
                new SelectList(new CrudeCountryServiceClient().FetchAll(),
                               "CountryId",
                               "CountryName",
                               contract.CountryId
                               );

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

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


            return(View(
                       "~/Views/Crude/City/CrudeCity/CrudeCityEdit.cshtml",
                       contract
                       ));
        }
コード例 #4
0
ファイル: CrudeCitySearch.cs プロジェクト: jacov/nor-port
        // refresh the grid
        // links:
        //  docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f
        public void RefreshCrudeCity()
        {
            var city = new CrudeCityServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = city.FetchWithFilter(
                    Guid.Empty
                    , countryPicker.SelectedValue
                    , textBoxCityCode.Text
                    , textBoxCityName.Text
                    , Guid.Empty
                    , Guid.Empty
                    , DateTime.MinValue
                    );
                dataGridViewCrudeCity.AutoGenerateColumns = false;
                dataGridViewCrudeCity.DataSource          = bindingSource;
                dataGridViewCrudeCity.AutoResizeColumns();
                dataGridViewCrudeCity.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                city.Close();
            }
        }
コード例 #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 txtCityCode_Validating(object sender, CancelEventArgs e)
        {
            if (!DesignMode)
            {
                // empty picker on no code
                if (string.IsNullOrEmpty(txtCityCode.Text))
                {
                    _cityId          = Guid.Empty;
                    txtCityName.Text = string.Empty;
                    txtCityCode.Text = string.Empty;
                    return;
                }

                CrudeCityServiceClient city = null;

                try {
                    city = new CrudeCityServiceClient();
                    CrudeCityContract contract = city.FetchByCityCode(txtCityCode.Text);

                    if (contract != null)
                    {
                        txtCityCode.Text = contract.CityCode;
                        txtCityName.Text = contract.CityName;
                        _cityId          = contract.CityId;
                    }
                } catch (Exception ex) {
                    MessageBox.Show(ex.Message);
                } finally {
                    if (city != null)
                    {
                        city.Close();
                    }
                }

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