Esempio 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 CrudeCartUserServiceClient();

            try {
                if (_isNew)
                {
                    service.Insert(_contract);
                }
                else
                {
                    service.Update(_contract);
                }
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                service.Close();
            }

            Close();
        }
Esempio n. 2
0
        // refresh the grid
        // links:
        //  docLink: http://sql2x.org/documentationLink/a90065e7-8ace-4de7-9367-d4653a7c637f
        public void RefreshCrudeCartUser()
        {
            var cartUser = new CrudeCartUserServiceClient();

            try {
                var bindingSource = new BindingSource();
                bindingSource.DataSource = cartUser.FetchWithFilter(
                    Guid.Empty
                    );
                dataGridViewCrudeCartUser.AutoGenerateColumns = false;
                dataGridViewCrudeCartUser.DataSource          = bindingSource;
                dataGridViewCrudeCartUser.AutoResizeColumns();
                dataGridViewCrudeCartUser.Refresh();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                cartUser.Close();
            }
        }
Esempio n. 3
0
        public ActionResult CrudeCartUserEdit(
            System.Guid cartUserId
            )
        {
            CrudeCartUserContract contract = new CrudeCartUserServiceClient().FetchByCartUserId(cartUserId);

            return(View(
                       "~/Views/Crude/Cart/CrudeCartUser/CrudeCartUserEdit.cshtml",
                       contract
                       ));
        }
Esempio n. 4
0
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid cartUserId)
        {
            var service = new CrudeCartUserServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByCartUserId(cartUserId);

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            } finally {
                service.Close();
            }
        }