コード例 #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 CrudeFerryIdentifierServiceClient();

            try {
                _contract.FerryIdentifierTypeRcd = ferryIdentifierTypeRefCombo.Text;
                _contract.FerryIdentifierCode    = textBoxFerryIdentifierCode.Text;
                _contract.StateRcd = textBoxState.Text;
                _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();
        }
コード例 #2
0
        public ActionResult CrudeFerryIdentifierEdit(
            System.Guid ferryIdentifierId
            )
        {
            CrudeFerryIdentifierContract contract = new CrudeFerryIdentifierServiceClient().FetchByFerryIdentifierId(ferryIdentifierId);

            ViewBag.FerryId =
                new SelectList(new CrudeFerryServiceClient().FetchAll(),
                               "FerryId",
                               "FerryName",
                               contract.FerryId
                               );

            ViewBag.FerryIdentifierTypeRcd =
                new SelectList(new CrudeFerryIdentifierTypeRefServiceClient().FetchAll(),
                               "FerryIdentifierTypeRcd",
                               "FerryIdentifierTypeName",
                               contract.FerryIdentifierTypeRcd
                               );

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


            return(View(
                       "~/Views/Crude/Ferry/CrudeFerryIdentifier/CrudeFerryIdentifierEdit.cshtml",
                       contract
                       ));
        }
コード例 #3
0
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid ferryIdentifierId)
        {
            var service = new CrudeFerryIdentifierServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByFerryIdentifierId(ferryIdentifierId);
                ferryIdentifierTypeRefCombo.Text = _contract.FerryIdentifierTypeRcd != null ? _contract.FerryIdentifierTypeRcd : String.Empty;
                textBoxFerryIdentifierCode.Text  = _contract.FerryIdentifierCode;
                textBoxState.Text           = _contract.StateRcd;
                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();
            }
        }
コード例 #4
0
        // refresh the grid
        // links:
        //  docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f
        public void RefreshCrudeFerryIdentifier()
        {
            var ferryIdentifier = new CrudeFerryIdentifierServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = ferryIdentifier.FetchWithFilter(
                    Guid.Empty
                    , Guid.Empty
                    , ferryIdentifierTypeRefCombo.Text
                    , textBoxFerryIdentifierCode.Text
                    , textBoxState.Text
                    , Guid.Empty
                    , DateTime.MinValue
                    );
                dataGridViewCrudeFerryIdentifier.AutoGenerateColumns = false;
                dataGridViewCrudeFerryIdentifier.DataSource          = bindingSource;
                dataGridViewCrudeFerryIdentifier.AutoResizeColumns();
                dataGridViewCrudeFerryIdentifier.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                ferryIdentifier.Close();
            }
        }