Ejemplo n.º 1
0
        public ActionResult CrudeProductChangeSetCreate([Bind()] CrudeProductChangeSetContract contract)
        {
            if (ModelState.IsValid)
            {
                new CrudeProductChangeSetServiceClient().Insert(contract);

                return(RedirectToAction("CrudeProductChangeSetIndex"));
            }

            return(View(
                       "~/Views/Crude/Product/CrudeProductChangeSet/CrudeProductChangeSetCreate.cshtml",
                       contract
                       ));
        }
Ejemplo n.º 2
0
        public ActionResult CrudeProductChangeSetEdit([Bind()] CrudeProductChangeSetContract contract)
        {
            if (ModelState.IsValid)
            {
                contract.DateTime = DateTime.UtcNow;

                new CrudeProductChangeSetServiceClient().Update(contract);

                return(RedirectToAction("CrudeProductChangeSetIndex"));
            }

            return(View(
                       "~/Views/Crude/Product/CrudeProductChangeSet/CrudeProductChangeSetEdit.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 CrudeProductChangeSetContract();
         _isNew     = true;
         this.Text += " - Not Savable (Product,ProductGatherKey,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 ShowAsAddByProduct(System.Guid productId)
        {
            try {
                _contract                   = new CrudeProductChangeSetContract();
                _isNew                      = true;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();
                _contract.ProductId         = productId;

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            }
        }
Ejemplo n.º 5
0
        public ActionResult CrudeProductChangeSetCreate(System.Guid?productId, System.Guid?productGatherKeyId, System.Guid?userId)
        {
            var contract = new CrudeProductChangeSetContract();

            if (productId != null)
            {
                contract.ProductId = (System.Guid)productId;
            }
            if (productGatherKeyId != null)
            {
                contract.ProductGatherKeyId = (System.Guid)productGatherKeyId;
            }
            if (userId != null)
            {
                contract.UserId = (System.Guid)userId;
            }

            ViewBag.ProductId =
                new SelectList(new CrudeProductServiceClient().FetchAll(),
                               "ProductId",
                               "ProductName",
                               contract.ProductId
                               );

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

            _isNew = false;
            try {
                _contract                   = service.FetchByProductChangeSetId(productChangeSetId);
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();

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