コード例 #1
0
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid defaultPerformanceTimeId, System.Guid defaultUserId)
        {
            var service = new CrudeDefaultPerformanceTimeServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByDefaultPerformanceTimeId(defaultPerformanceTimeId);
                textBoxCommandName.Text        = _contract.CommandName;
                maskedTextBoxMilliseconds.Text = _contract.Milliseconds.ToString();
                _contract.DefaultUserId        = defaultUserId;
                dateTimePickerDateTime.Value   = _contract.DateTime != DateTime.MinValue ? _contract.DateTime : dateTimePickerDateTime.MinDate;
                dateTimePickerDateTime.Checked = _contract.DateTime != DateTime.MinValue;

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                service.Close();
            }
        }
コード例 #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 CrudeDefaultPerformanceTimeServiceClient();

            try {
                _contract.CommandName  = textBoxCommandName.Text;
                _contract.Milliseconds = maskedTextBoxMilliseconds.Text == String.Empty ? 0 : Convert.ToInt32(maskedTextBoxMilliseconds.Text);
                _contract.DateTime     = dateTimePickerDateTime.Checked ? Convert.ToDateTime(dateTimePickerDateTime.Value): DateTime.MinValue;

                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 RefreshCrudeDefaultPerformanceTime()
        {
            var defaultPerformanceTime = new CrudeDefaultPerformanceTimeServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = defaultPerformanceTime.FetchWithFilter(
                    Guid.Empty
                    , textBoxCommandName.Text
                    , maskedTextBoxMilliseconds.Text == String.Empty ? 0 : Convert.ToInt32(maskedTextBoxMilliseconds.Text)
                    , Guid.Empty
                    , dateTimePickerDateTime.Checked ? Convert.ToDateTime(dateTimePickerDateTime.Value): DateTime.MinValue
                    );
                dataGridViewCrudeDefaultPerformanceTime.AutoGenerateColumns = false;
                dataGridViewCrudeDefaultPerformanceTime.DataSource          = bindingSource;
                dataGridViewCrudeDefaultPerformanceTime.AutoResizeColumns();
                dataGridViewCrudeDefaultPerformanceTime.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                defaultPerformanceTime.Close();
            }
        }
コード例 #4
0
        public ActionResult CrudeDefaultPerformanceTimeEdit(
            System.Guid defaultPerformanceTimeId
            )
        {
            CrudeDefaultPerformanceTimeContract contract = new CrudeDefaultPerformanceTimeServiceClient().FetchByDefaultPerformanceTimeId(defaultPerformanceTimeId);

            return(View(
                       "~/Views/Crude/Default/CrudeDefaultPerformanceTime/CrudeDefaultPerformanceTimeEdit.cshtml",
                       contract
                       ));
        }