public ActionResult CrudeProductGatherKeyCreate(System.Guid?productGatherId, System.Guid?userId)
        {
            var contract = new CrudeProductGatherKeyContract();

            if (productGatherId != null)
            {
                contract.ProductGatherId = (System.Guid)productGatherId;
            }
            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/Product/CrudeProductGatherKey/CrudeProductGatherKeyCreate.cshtml",
                       contract
                       ));
        }
        public ActionResult CrudeProductGatherKeyCreate([Bind()] CrudeProductGatherKeyContract contract)
        {
            if (ModelState.IsValid)
            {
                new CrudeProductGatherKeyServiceClient().Insert(contract);

                return(RedirectToAction("CrudeProductGatherKeyIndex"));
            }

            return(View(
                       "~/Views/Crude/Product/CrudeProductGatherKey/CrudeProductGatherKeyCreate.cshtml",
                       contract
                       ));
        }
        public ActionResult CrudeProductGatherKeyEdit([Bind()] CrudeProductGatherKeyContract contract)
        {
            if (ModelState.IsValid)
            {
                contract.DateTime = DateTime.UtcNow;

                new CrudeProductGatherKeyServiceClient().Update(contract);

                return(RedirectToAction("CrudeProductGatherKeyIndex"));
            }

            return(View(
                       "~/Views/Crude/Product/CrudeProductGatherKey/CrudeProductGatherKeyEdit.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 CrudeProductGatherKeyContract();
         _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 CrudeProductGatherKeyContract();
                _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 the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid productGatherKeyId)
        {
            var service = new CrudeProductGatherKeyServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByProductGatherKeyId(productGatherKeyId);
                textBoxProductGatherKeyValue.Text = _contract.ProductGatherKeyValue;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();

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