public ActionResult CrudeProductGatherSourceCreate([Bind()] CrudeProductGatherSourceContract contract)
        {
            if (ModelState.IsValid)
            {
                new CrudeProductGatherSourceServiceClient().Insert(contract);

                return(RedirectToAction("CrudeProductGatherSourceIndex"));
            }

            return(View(
                       "~/Views/Crude/Product/CrudeProductGatherSource/CrudeProductGatherSourceCreate.cshtml",
                       contract
                       ));
        }
        public ActionResult CrudeProductGatherSourceEdit([Bind()] CrudeProductGatherSourceContract contract)
        {
            if (ModelState.IsValid)
            {
                contract.DateTime = DateTime.UtcNow;

                new CrudeProductGatherSourceServiceClient().Update(contract);

                return(RedirectToAction("CrudeProductGatherSourceIndex"));
            }

            return(View(
                       "~/Views/Crude/Product/CrudeProductGatherSource/CrudeProductGatherSourceEdit.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 CrudeProductGatherSourceContract();
         _isNew     = true;
         this.Text += " - Not Savable (ProductGather,User Missing)";
         Show();
     } catch (Exception ex) {
         if (ex == null)
         {
         }
         else
         {
             System.Diagnostics.Debugger.Break();
         }
     }
 }
        // shows by foreign keys
        // links:
        //  docLink: http://sql2x.org/documentationLink/f21e72c1-2d57-44c1-a9c1-1b80bad6a391
        public void ShowAsAddByProductGather(System.Guid productGatherId)
        {
            try {
                _contract                   = new CrudeProductGatherSourceContract();
                _isNew                      = true;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();
                _contract.ProductGatherId   = productGatherId;

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            }
        }
        // shows by foreign keys
        // links:
        //  docLink: http://sql2x.org/documentationLink/f21e72c1-2d57-44c1-a9c1-1b80bad6a391
        public void ShowAsAddByProductGatherSourceType(string productGatherSourceTypeRcd)
        {
            try {
                _contract                            = new CrudeProductGatherSourceContract();
                _isNew                               = true;
                _contract.DateTime                   = DateTime.UtcNow;
                dateTimePickerDateTime.Text          = _contract.DateTime.ToString();
                _contract.ProductGatherSourceTypeRcd = productGatherSourceTypeRcd;
                productGatherSourceTypeRefCombo.Text = _contract.ProductGatherSourceTypeRcd != null ? _contract.ProductGatherSourceTypeRcd : String.Empty;

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

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

            ViewBag.ProductGatherSourceTypeRcd =
                new SelectList(new CrudeProductGatherSourceTypeRefServiceClient().FetchAll(),
                               "ProductGatherSourceTypeRcd",
                               "ProductGatherSourceTypeName",
                               contract.ProductGatherSourceTypeRcd
                               );

            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/Product/CrudeProductGatherSource/CrudeProductGatherSourceCreate.cshtml",
                       contract
                       ));
        }
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid productGatherSourceId)
        {
            var service = new CrudeProductGatherSourceServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByProductGatherSourceId(productGatherSourceId);
                productGatherSourceTypeRefCombo.Text = _contract.ProductGatherSourceTypeRcd != null ? _contract.ProductGatherSourceTypeRcd : String.Empty;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();

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