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

            _isNew = false;
            try {
                _contract = service.FetchByFinancialSpecialServiceId(financialSpecialServiceId);
                serviceSpecialServiceRequestPicker.SelectedValue = _contract.ServiceSpecialServiceRequestId;
                maskedTextBoxQuantity.Text            = _contract.Quantity.ToString();
                maskedTextBoxAmount.Text              = _contract.Amount.ToString();
                financialCurrencyPicker.SelectedValue = _contract.FinancialCurrencyId;
                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();
            }
        }
        // shows the form with default values for comboboxes and pickers
        // links:
        //  docLink: http://sql2x.org/documentationLink/f5685d96-a0bb-4f7b-beaa-b3d578c7cf28
        public void ShowAsAdd(System.Guid serviceSpecialServiceRequestId, int quantity, decimal amount, System.Guid financialCurrencyId, System.Guid userId)
        {
            try {
                _contract = new CrudeFinancialSpecialServiceContract();
                _isNew    = true;
                _contract.ServiceSpecialServiceRequestId         = serviceSpecialServiceRequestId;
                serviceSpecialServiceRequestPicker.SelectedValue = _contract.ServiceSpecialServiceRequestId;
                _contract.Quantity                    = quantity;
                maskedTextBoxQuantity.Text            = _contract.Quantity.ToString();
                _contract.Amount                      = amount;
                maskedTextBoxAmount.Text              = _contract.Amount.ToString();
                _contract.FinancialCurrencyId         = financialCurrencyId;
                financialCurrencyPicker.SelectedValue = _contract.FinancialCurrencyId;
                _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();
                }
            }
        }
        public ActionResult CrudeFinancialSpecialServiceCreate([Bind()] CrudeFinancialSpecialServiceContract contract)
        {
            if (ModelState.IsValid)
            {
                new CrudeFinancialSpecialServiceServiceClient().Insert(contract);

                return(RedirectToAction("CrudeFinancialSpecialServiceIndex"));
            }

            return(View(
                       "~/Views/Crude/Financial/CrudeFinancialSpecialService/CrudeFinancialSpecialServiceCreate.cshtml",
                       contract
                       ));
        }
        public ActionResult CrudeFinancialSpecialServiceEdit([Bind()] CrudeFinancialSpecialServiceContract contract)
        {
            if (ModelState.IsValid)
            {
                contract.DateTime = DateTime.UtcNow;

                new CrudeFinancialSpecialServiceServiceClient().Update(contract);

                return(RedirectToAction("CrudeFinancialSpecialServiceIndex"));
            }

            return(View(
                       "~/Views/Crude/Financial/CrudeFinancialSpecialService/CrudeFinancialSpecialServiceEdit.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 CrudeFinancialSpecialServiceContract();
         _isNew    = true;
         Show();
     } catch (Exception ex) {
         if (ex == null)
         {
         }
         else
         {
             System.Diagnostics.Debugger.Break();
         }
     }
 }
        public ActionResult CrudeFinancialSpecialServiceCreate(System.Guid?serviceSpecialServiceRequestId, System.Guid?financialCurrencyId, System.Guid?userId)
        {
            var contract = new CrudeFinancialSpecialServiceContract();

            if (serviceSpecialServiceRequestId != null)
            {
                contract.ServiceSpecialServiceRequestId = (System.Guid)serviceSpecialServiceRequestId;
            }
            if (financialCurrencyId != null)
            {
                contract.FinancialCurrencyId = (System.Guid)financialCurrencyId;
            }
            if (userId != null)
            {
                contract.UserId = (System.Guid)userId;
            }

            ViewBag.ServiceSpecialServiceRequestId =
                new SelectList(new CrudeServiceSpecialServiceRequestServiceClient().FetchAll(),
                               "ServiceSpecialServiceRequestId",
                               "ServiceSpecialServiceRequestName",
                               contract.ServiceSpecialServiceRequestId
                               );

            ViewBag.FinancialCurrencyId =
                new SelectList(new CrudeFinancialCurrencyServiceClient().FetchAll(),
                               "FinancialCurrencyId",
                               "FinancialCurrencyTypeName",
                               contract.FinancialCurrencyId
                               );

            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/Financial/CrudeFinancialSpecialService/CrudeFinancialSpecialServiceCreate.cshtml",
                       contract
                       ));
        }
        // shows by foreign keys
        // links:
        //  docLink: http://sql2x.org/documentationLink/f21e72c1-2d57-44c1-a9c1-1b80bad6a391
        public void ShowAsAddByFinancialCurrency(System.Guid financialCurrencyId)
        {
            try {
                _contract                             = new CrudeFinancialSpecialServiceContract();
                _isNew                                = true;
                _contract.DateTime                    = DateTime.UtcNow;
                dateTimePickerDateTime.Text           = _contract.DateTime.ToString();
                _contract.FinancialCurrencyId         = financialCurrencyId;
                financialCurrencyPicker.SelectedValue = _contract.FinancialCurrencyId;

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