예제 #1
0
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid agencyId)
        {
            var service = new CrudeAgencyServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByAgencyId(agencyId);
                textBoxAgencyCode.Text      = _contract.AgencyCode;
                textBoxAgencyName.Text      = _contract.AgencyName;
                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();
            }
        }
예제 #2
0
        // 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 agencyCode, string agencyName, System.Guid userId)
        {
            try {
                _contract                   = new CrudeAgencyContract();
                _isNew                      = true;
                _contract.AgencyCode        = agencyCode;
                textBoxAgencyCode.Text      = _contract.AgencyCode;
                _contract.AgencyName        = agencyName;
                textBoxAgencyName.Text      = _contract.AgencyName;
                _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();
                }
            }
        }
예제 #3
0
        public ActionResult CrudeAgencyCreate(System.Guid?userId)
        {
            var contract = new CrudeAgencyContract();

            if (userId != null)
            {
                contract.UserId = (System.Guid)userId;
            }

            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/Agency/CrudeAgency/CrudeAgencyCreate.cshtml",
                       contract
                       ));
        }
예제 #4
0
        public ActionResult CrudeAgencyCreate([Bind()] CrudeAgencyContract contract)
        {
            if (ModelState.IsValid)
            {
                new CrudeAgencyServiceClient().Insert(contract);

                return(RedirectToAction("CrudeAgencyIndex"));
            }

            return(View(
                       "~/Views/Crude/Agency/CrudeAgency/CrudeAgencyCreate.cshtml",
                       contract
                       ));
        }
예제 #5
0
 // 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 CrudeAgencyContract();
         _isNew    = true;
         Show();
     } catch (Exception ex) {
         if (ex == null)
         {
         }
         else
         {
             System.Diagnostics.Debugger.Break();
         }
     }
 }
예제 #6
0
        public ActionResult CrudeAgencyEdit([Bind()] CrudeAgencyContract contract)
        {
            if (ModelState.IsValid)
            {
                contract.DateTime = DateTime.UtcNow;

                new CrudeAgencyServiceClient().Update(contract);

                return(RedirectToAction("CrudeAgencyIndex"));
            }

            return(View(
                       "~/Views/Crude/Agency/CrudeAgency/CrudeAgencyEdit.cshtml",
                       contract
                       ));
        }
예제 #7
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 txtAgencyCode_Validating(object sender, CancelEventArgs e)
        {
            if (!DesignMode)
            {
                // empty picker on no code
                if (string.IsNullOrEmpty(txtAgencyCode.Text))
                {
                    _agencyId          = Guid.Empty;
                    txtAgencyName.Text = string.Empty;
                    txtAgencyCode.Text = string.Empty;
                    return;
                }

                CrudeAgencyServiceClient agency = null;

                try {
                    agency = new CrudeAgencyServiceClient();
                    CrudeAgencyContract contract = agency.FetchByAgencyCode(txtAgencyCode.Text);

                    if (contract != null)
                    {
                        txtAgencyCode.Text = contract.AgencyCode;
                        txtAgencyName.Text = contract.AgencyName;
                        _agencyId          = contract.AgencyId;
                    }
                } catch (Exception ex) {
                    MessageBox.Show(ex.Message);
                } finally {
                    if (agency != null)
                    {
                        agency.Close();
                    }
                }

                if (this.Picked != null)
                {
                    this.Picked(new object(), new EventArgs());
                }
            }
        }