// 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 carName, decimal dayPriceAmount, System.Guid financialCurrencyId, System.Guid addressId, System.Guid productId, System.Guid userId)
        {
            try {
                _contract                             = new CrudeServiceCarRentalContract();
                _isNew                                = true;
                _contract.CarName                     = carName;
                textBoxCarName.Text                   = _contract.CarName;
                _contract.DayPriceAmount              = dayPriceAmount;
                maskedTextBoxDayPriceAmount.Text      = _contract.DayPriceAmount.ToString();
                _contract.FinancialCurrencyId         = financialCurrencyId;
                financialCurrencyPicker.SelectedValue = _contract.FinancialCurrencyId;
                _contract.AddressId                   = addressId;
                _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();
                }
            }
        }
        // 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 CrudeServiceCarRentalCreate(System.Guid?financialCurrencyId, System.Guid?addressId, System.Guid?productId, System.Guid?userId)
        {
            var contract = new CrudeServiceCarRentalContract();

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

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

            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/Service/CrudeServiceCarRental/CrudeServiceCarRentalCreate.cshtml",
                       contract
                       ));
        }
        public ActionResult CrudeServiceCarRentalCreate([Bind()] CrudeServiceCarRentalContract contract)
        {
            if (ModelState.IsValid)
            {
                new CrudeServiceCarRentalServiceClient().Insert(contract);

                return(RedirectToAction("CrudeServiceCarRentalIndex"));
            }

            return(View(
                       "~/Views/Crude/Service/CrudeServiceCarRental/CrudeServiceCarRentalCreate.cshtml",
                       contract
                       ));
        }
 // 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 CrudeServiceCarRentalContract();
         _isNew    = true;
         Show();
     } catch (Exception ex) {
         if (ex == null)
         {
         }
         else
         {
             System.Diagnostics.Debugger.Break();
         }
     }
 }
        public ActionResult CrudeServiceCarRentalEdit([Bind()] CrudeServiceCarRentalContract contract)
        {
            if (ModelState.IsValid)
            {
                contract.DateTime = DateTime.UtcNow;

                new CrudeServiceCarRentalServiceClient().Update(contract);

                return(RedirectToAction("CrudeServiceCarRentalIndex"));
            }

            return(View(
                       "~/Views/Crude/Service/CrudeServiceCarRental/CrudeServiceCarRentalEdit.cshtml",
                       contract
                       ));
        }
        // shows by foreign keys
        // links:
        //  docLink: http://sql2x.org/documentationLink/f21e72c1-2d57-44c1-a9c1-1b80bad6a391
        public void ShowAsAddByAddress(System.Guid addressId)
        {
            try {
                _contract                   = new CrudeServiceCarRentalContract();
                _isNew                      = true;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();
                _contract.AddressId         = addressId;

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            }
        }
        // shows by foreign keys
        // links:
        //  docLink: http://sql2x.org/documentationLink/f21e72c1-2d57-44c1-a9c1-1b80bad6a391
        public void ShowAsAddByFinancialCurrency(System.Guid financialCurrencyId)
        {
            try {
                _contract                             = new CrudeServiceCarRentalContract();
                _isNew                                = true;
                _contract.DateTime                    = DateTime.UtcNow;
                dateTimePickerDateTime.Text           = _contract.DateTime.ToString();
                _contract.FinancialCurrencyId         = financialCurrencyId;
                financialCurrencyPicker.SelectedValue = _contract.FinancialCurrencyId;

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            }
        }
Beispiel #9
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());
                }
            }
        }