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

            _isNew = false;
            try {
                _contract = service.FetchByFinancialAdjustmentTypeRcd(financialAdjustmentTypeRcd);
                textBoxFinancialAdjustmentType.Text     = _contract.FinancialAdjustmentTypeRcd;
                textBoxFinancialAdjustmentTypeName.Text = _contract.FinancialAdjustmentTypeName;
                _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();
            }
        }
        public ActionResult CrudeFinancialAdjustmentTypeRefCreate([Bind()] CrudeFinancialAdjustmentTypeRefContract contract)
        {
            if (ModelState.IsValid)
            {
                new CrudeFinancialAdjustmentTypeRefServiceClient().Insert(contract);

                return(RedirectToAction("CrudeFinancialAdjustmentTypeRefIndex"));
            }

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

                contract.DateTime = DateTime.UtcNow;

                new CrudeFinancialAdjustmentTypeRefServiceClient().Update(contract);

                return(RedirectToAction("CrudeFinancialAdjustmentTypeRefIndex"));
            }

            return(View(
                       "~/Views/Crude/Financial/CrudeFinancialAdjustmentTypeRef/CrudeFinancialAdjustmentTypeRefEdit.cshtml",
                       contract
                       ));
        }
        // 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 CrudeFinancialAdjustmentTypeRefContract();
                _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 CrudeFinancialAdjustmentTypeRefCreate(System.Guid?userId)
        {
            var contract = new CrudeFinancialAdjustmentTypeRefContract();

            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/CrudeFinancialAdjustmentTypeRef/CrudeFinancialAdjustmentTypeRefCreate.cshtml",
                       contract
                       ));
        }