public ActionResult CrudeAirportSupplierCreate(System.Guid?userId)
        {
            var contract = new CrudeAirportSupplierContract();

            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/Airport/CrudeAirportSupplier/CrudeAirportSupplierCreate.cshtml",
                       contract
                       ));
        }
Example #2
0
        // shows the form with default values for comboboxes and pickers
        // links:
        //  docLink: http://sql2x.org/documentationLink/f5685d96-a0bb-4f7b-beaa-b3d578c7cf28
        public void ShowAsAdd(string aiportSupplierName, string airportSupplierCode, System.Guid userId)
        {
            try {
                _contract = new CrudeAirportSupplierContract();
                _isNew    = true;
                _contract.AiportSupplierName    = aiportSupplierName;
                textBoxAiportSupplierName.Text  = _contract.AiportSupplierName;
                _contract.AirportSupplierCode   = airportSupplierCode;
                textBoxAirportSupplierCode.Text = _contract.AirportSupplierCode;
                _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();
                }
            }
        }
Example #3
0
        // shows the form in edit modus
        // links:
        //  docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77
        public void ShowAsEdit(System.Guid airportSupplierId)
        {
            var service = new CrudeAirportSupplierServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByAirportSupplierId(airportSupplierId);
                textBoxAiportSupplierName.Text  = _contract.AiportSupplierName;
                textBoxAirportSupplierCode.Text = _contract.AirportSupplierCode;
                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();
            }
        }
        public ActionResult CrudeAirportSupplierCreate([Bind()] CrudeAirportSupplierContract contract)
        {
            if (ModelState.IsValid)
            {
                new CrudeAirportSupplierServiceClient().Insert(contract);

                return(RedirectToAction("CrudeAirportSupplierIndex"));
            }

            return(View(
                       "~/Views/Crude/Airport/CrudeAirportSupplier/CrudeAirportSupplierCreate.cshtml",
                       contract
                       ));
        }
        public ActionResult CrudeAirportSupplierEdit([Bind()] CrudeAirportSupplierContract contract)
        {
            if (ModelState.IsValid)
            {
                contract.DateTime = DateTime.UtcNow;

                new CrudeAirportSupplierServiceClient().Update(contract);

                return(RedirectToAction("CrudeAirportSupplierIndex"));
            }

            return(View(
                       "~/Views/Crude/Airport/CrudeAirportSupplier/CrudeAirportSupplierEdit.cshtml",
                       contract
                       ));
        }
Example #6
0
 // 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 CrudeAirportSupplierContract();
         _isNew    = true;
         Show();
     } catch (Exception ex) {
         if (ex == null)
         {
         }
         else
         {
             System.Diagnostics.Debugger.Break();
         }
     }
 }