Пример #1
0
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid countryId)
        {
            var service = new CrudeCountryServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByCountryId(countryId);
                textBoxCountryCode.Text     = _contract.CountryCode;
                textBoxCountryName.Text     = _contract.CountryName;
                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();
            }
        }
Пример #2
0
        // shows the form with default values for comboboxes and pickers
        // links:
        //  docLink: http://sql2x.org/documentationLink/f5685d96-a0bb-4f7b-beaa-b3d578c7cf28
        public void ShowAsAdd(string countryCode, string countryName, System.Guid productId, System.Guid userId)
        {
            try {
                _contract                   = new CrudeCountryContract();
                _isNew                      = true;
                _contract.CountryCode       = countryCode;
                textBoxCountryCode.Text     = _contract.CountryCode;
                _contract.CountryName       = countryName;
                textBoxCountryName.Text     = _contract.CountryName;
                _contract.ProductId         = productId;
                _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();
                }
            }
        }
Пример #3
0
        public ActionResult CrudeCountryCreate([Bind()] CrudeCountryContract contract)
        {
            if (ModelState.IsValid)
            {
                new CrudeCountryServiceClient().Insert(contract);

                return(RedirectToAction("CrudeCountryIndex"));
            }

            return(View(
                       "~/Views/Crude/Country/CrudeCountry/CrudeCountryCreate.cshtml",
                       contract
                       ));
        }
Пример #4
0
 // 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 CrudeCountryContract();
         _isNew    = true;
         Show();
     } catch (Exception ex) {
         if (ex == null)
         {
         }
         else
         {
             System.Diagnostics.Debugger.Break();
         }
     }
 }
Пример #5
0
        public ActionResult CrudeCountryEdit([Bind()] CrudeCountryContract contract)
        {
            if (ModelState.IsValid)
            {
                contract.DateTime = DateTime.UtcNow;

                new CrudeCountryServiceClient().Update(contract);

                return(RedirectToAction("CrudeCountryIndex"));
            }

            return(View(
                       "~/Views/Crude/Country/CrudeCountry/CrudeCountryEdit.cshtml",
                       contract
                       ));
        }
Пример #6
0
        // shows the form with default values for comboboxes and pickers
        // links:
        //  docLink: http://sql2x.org/documentationLink/599dcb45-f71b-4672-bb18-46975a4fe9b3
        public void ShowAsAddByRules(System.Guid userId)
        {
            try {
                _contract                   = new CrudeCountryContract();
                _isNew                      = true;
                _contract.UserId            = userId;
                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();
                }
            }
        }
Пример #7
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 txtCountryCode_Validating(object sender, CancelEventArgs e)
        {
            if (!DesignMode)
            {
                // empty picker on no code
                if (string.IsNullOrEmpty(txtCountryCode.Text))
                {
                    _countryId          = Guid.Empty;
                    txtCountryName.Text = string.Empty;
                    txtCountryCode.Text = string.Empty;
                    return;
                }

                CrudeCountryServiceClient country = null;

                try {
                    country = new CrudeCountryServiceClient();
                    CrudeCountryContract contract = country.FetchByCountryCode(txtCountryCode.Text);

                    if (contract != null)
                    {
                        txtCountryCode.Text = contract.CountryCode;
                        txtCountryName.Text = contract.CountryName;
                        _countryId          = contract.CountryId;
                    }
                } catch (Exception ex) {
                    MessageBox.Show(ex.Message);
                } finally {
                    if (country != null)
                    {
                        country.Close();
                    }
                }

                if (this.Picked != null)
                {
                    this.Picked(new object(), new EventArgs());
                }
            }
        }
Пример #8
0
        public ActionResult CrudeCountryCreate(System.Guid?productId, System.Guid?userId)
        {
            var contract = new CrudeCountryContract();

            if (productId != null)
            {
                contract.ProductId = (System.Guid)productId;
            }
            if (userId != null)
            {
                contract.UserId = (System.Guid)userId;
            }

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

            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/Country/CrudeCountry/CrudeCountryCreate.cshtml",
                       contract
                       ));
        }