예제 #1
0
        public ActionResult CrudeServiceHotelEdit(
            System.Guid serviceHotelId
            )
        {
            CrudeServiceHotelContract contract = new CrudeServiceHotelServiceClient().FetchByServiceHotelId(serviceHotelId);

            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/CrudeServiceHotel/CrudeServiceHotelEdit.cshtml",
                       contract
                       ));
        }
예제 #2
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 CrudeServiceHotelServiceClient();

            try {
                _contract.HotelName           = textBoxHotelName.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();
        }
예제 #3
0
        // refresh the grid
        // links:
        //  docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f
        public void RefreshCrudeServiceHotel()
        {
            var serviceHotel = new CrudeServiceHotelServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = serviceHotel.FetchWithFilter(
                    Guid.Empty
                    , textBoxHotelName.Text
                    , maskedTextBoxDayPriceAmount.Text == String.Empty ? 0 : Convert.ToDecimal(maskedTextBoxDayPriceAmount.Text)
                    , financialCurrencyPicker.SelectedValue
                    , Guid.Empty
                    , Guid.Empty
                    , Guid.Empty
                    , DateTime.MinValue
                    );
                dataGridViewCrudeServiceHotel.AutoGenerateColumns = false;
                dataGridViewCrudeServiceHotel.DataSource          = bindingSource;
                dataGridViewCrudeServiceHotel.AutoResizeColumns();
                dataGridViewCrudeServiceHotel.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                serviceHotel.Close();
            }
        }
예제 #4
0
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid serviceHotelId)
        {
            var service = new CrudeServiceHotelServiceClient();

            _isNew = false;
            try {
                _contract                             = service.FetchByServiceHotelId(serviceHotelId);
                textBoxHotelName.Text                 = _contract.HotelName;
                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();
            }
        }