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

            _isNew = false;
            try {
                _contract = service.FetchByFinancialCurrencyTypeRcd(financialCurrencyTypeRcd);
                textBoxFinancialCurrencyType.Text     = _contract.FinancialCurrencyTypeRcd;
                textBoxFinancialCurrencyTypeCode.Text = _contract.FinancialCurrencyTypeCode;
                textBoxFinancialCurrencyTypeName.Text = _contract.FinancialCurrencyTypeName;
                maskedTextBoxDecimalCount.Text        = _contract.DecimalCount.ToString();
                _contract.UserId            = 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();
            }
        }
Example #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 financialCurrencyTypeRcd, string financialCurrencyTypeCode, string financialCurrencyTypeName, int decimalCount, System.Guid userId)
        {
            try {
                _contract = new CrudeFinancialCurrencyTypeRefContract();
                _isNew    = true;
                _contract.FinancialCurrencyTypeRcd    = financialCurrencyTypeRcd;
                textBoxFinancialCurrencyType.Text     = _contract.FinancialCurrencyTypeRcd;
                _contract.FinancialCurrencyTypeCode   = financialCurrencyTypeCode;
                textBoxFinancialCurrencyTypeCode.Text = _contract.FinancialCurrencyTypeCode;
                _contract.FinancialCurrencyTypeName   = financialCurrencyTypeName;
                textBoxFinancialCurrencyTypeName.Text = _contract.FinancialCurrencyTypeName;
                _contract.DecimalCount         = decimalCount;
                maskedTextBoxDecimalCount.Text = _contract.DecimalCount.ToString();
                _contract.UserId            = userId;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            }
        }
        public ActionResult CrudeFinancialCurrencyTypeRefCreate([Bind()] CrudeFinancialCurrencyTypeRefContract contract)
        {
            if (ModelState.IsValid)
            {
                new CrudeFinancialCurrencyTypeRefServiceClient().Insert(contract);

                return(RedirectToAction("CrudeFinancialCurrencyTypeRefIndex"));
            }

            return(View(
                       "~/Views/Crude/Financial/CrudeFinancialCurrencyTypeRef/CrudeFinancialCurrencyTypeRefCreate.cshtml",
                       contract
                       ));
        }
Example #4
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 CrudeFinancialCurrencyTypeRefContract();
         _isNew    = true;
         Show();
     } catch (Exception ex) {
         if (ex == null)
         {
         }
         else
         {
             System.Diagnostics.Debugger.Break();
         }
     }
 }
        public ActionResult CrudeFinancialCurrencyTypeRefEdit([Bind()] CrudeFinancialCurrencyTypeRefContract contract)
        {
            if (ModelState.IsValid)
            {
                contract.UserId = new System.Guid("{FFFFFFFF-5555-5555-5555-FFFFFFFFFFFF}");

                contract.DateTime = DateTime.UtcNow;

                new CrudeFinancialCurrencyTypeRefServiceClient().Update(contract);

                return(RedirectToAction("CrudeFinancialCurrencyTypeRefIndex"));
            }

            return(View(
                       "~/Views/Crude/Financial/CrudeFinancialCurrencyTypeRef/CrudeFinancialCurrencyTypeRefEdit.cshtml",
                       contract
                       ));
        }
Example #6
0
        // shows the form with default values for comboboxes and pickers
        // links:
        //  docLink: http://sql2x.org/documentationLink/599dcb45-f71b-4672-bb18-46975a4fe9b3
        public void ShowAsAddByRules(System.Guid userId)
        {
            try {
                _contract                   = new CrudeFinancialCurrencyTypeRefContract();
                _isNew                      = true;
                _contract.UserId            = userId;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            }
        }
        public ActionResult CrudeFinancialCurrencyTypeRefCreate(System.Guid?userId)
        {
            var contract = new CrudeFinancialCurrencyTypeRefContract();

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

            if (userId == null)
            {
                contract.UserId = new System.Guid("{FFFFFFFF-5555-5555-5555-FFFFFFFFFFFF}");
            }

            contract.DateTime = DateTime.UtcNow;


            return(View(
                       "~/Views/Crude/Financial/CrudeFinancialCurrencyTypeRef/CrudeFinancialCurrencyTypeRefCreate.cshtml",
                       contract
                       ));
        }