Ejemplo 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 CrudeServicePackagePromotionServiceClient();

            try {
                _contract.ServicePackageId     = (Guid)servicePackagePicker.SelectedValue;
                _contract.PromotionPriceAmount = maskedTextBoxPromotionPriceAmount.Text == String.Empty ? 0 : Convert.ToDecimal(maskedTextBoxPromotionPriceAmount.Text);
                _contract.FinancialCurrencyId  = (Guid)financialCurrencyPicker.SelectedValue;
                _contract.UserId   = (Guid)userPicker.SelectedValue;
                _contract.ClientId = (Guid)clientPicker.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();
        }
Ejemplo n.º 2
0
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid servicePackagePromotionId)
        {
            var service = new CrudeServicePackagePromotionServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByServicePackagePromotionId(servicePackagePromotionId);
                servicePackagePicker.SelectedValue     = _contract.ServicePackageId;
                maskedTextBoxPromotionPriceAmount.Text = _contract.PromotionPriceAmount.ToString();
                financialCurrencyPicker.SelectedValue  = _contract.FinancialCurrencyId;
                userPicker.SelectedValue    = _contract.UserId;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();
                clientPicker.SelectedValue  = _contract.ClientId;

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                service.Close();
            }
        }
Ejemplo n.º 3
0
        // refresh the grid
        // links:
        //  docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f
        public void RefreshCrudeServicePackagePromotion()
        {
            var servicePackagePromotion = new CrudeServicePackagePromotionServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = servicePackagePromotion.FetchWithFilter(
                    Guid.Empty
                    , servicePackagePicker.SelectedValue
                    , maskedTextBoxPromotionPriceAmount.Text == String.Empty ? 0 : Convert.ToDecimal(maskedTextBoxPromotionPriceAmount.Text)
                    , financialCurrencyPicker.SelectedValue
                    , Guid.Empty
                    , DateTime.MinValue
                    , Guid.Empty
                    , clientPicker.SelectedValue
                    );
                dataGridViewCrudeServicePackagePromotion.AutoGenerateColumns = false;
                dataGridViewCrudeServicePackagePromotion.DataSource          = bindingSource;
                dataGridViewCrudeServicePackagePromotion.AutoResizeColumns();
                dataGridViewCrudeServicePackagePromotion.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                servicePackagePromotion.Close();
            }
        }
        public ActionResult CrudeServicePackagePromotionEdit(
            System.Guid servicePackagePromotionId
            )
        {
            CrudeServicePackagePromotionContract contract = new CrudeServicePackagePromotionServiceClient().FetchByServicePackagePromotionId(servicePackagePromotionId);

            ViewBag.ServicePackageId =
                new SelectList(new CrudeServicePackageServiceClient().FetchAll(),
                               "ServicePackageId",
                               "ServicePackageName",
                               contract.ServicePackageId
                               );

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

            ViewBag.ClientId =
                new SelectList(new CrudeClientServiceClient().FetchAll(),
                               "ClientId",
                               "FirstName",
                               contract.ClientId
                               );

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


            return(View(
                       "~/Views/Crude/Service/CrudeServicePackagePromotion/CrudeServicePackagePromotionEdit.cshtml",
                       contract
                       ));
        }