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

            _isNew = false;
            try {
                _contract = service.FetchByAirportLinkId(airportLinkId);
                airportPicker.SelectedValue = _contract.AirportId;
                linkTypeRefCombo.Text       = _contract.LinkTypeRcd != null ? _contract.LinkTypeRcd : String.Empty;
                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();
            }
        }
Ejemplo n.º 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(System.Guid airportId, string linkTypeRcd, System.Guid userId)
        {
            try {
                _contract                   = new CrudeAirportLinkContract();
                _isNew                      = true;
                _contract.AirportId         = airportId;
                airportPicker.SelectedValue = _contract.AirportId;
                _contract.LinkTypeRcd       = linkTypeRcd;
                linkTypeRefCombo.Text       = _contract.LinkTypeRcd != null ? _contract.LinkTypeRcd : String.Empty;
                _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();
                }
            }
        }
Ejemplo n.º 3
0
        public ActionResult CrudeAirportLinkCreate([Bind()] CrudeAirportLinkContract contract)
        {
            if (ModelState.IsValid)
            {
                new CrudeAirportLinkServiceClient().Insert(contract);

                return(RedirectToAction("CrudeAirportLinkIndex"));
            }

            return(View(
                       "~/Views/Crude/Airport/CrudeAirportLink/CrudeAirportLinkCreate.cshtml",
                       contract
                       ));
        }
Ejemplo n.º 4
0
        public ActionResult CrudeAirportLinkEdit([Bind()] CrudeAirportLinkContract contract)
        {
            if (ModelState.IsValid)
            {
                contract.DateTime = DateTime.UtcNow;

                new CrudeAirportLinkServiceClient().Update(contract);

                return(RedirectToAction("CrudeAirportLinkIndex"));
            }

            return(View(
                       "~/Views/Crude/Airport/CrudeAirportLink/CrudeAirportLinkEdit.cshtml",
                       contract
                       ));
        }
Ejemplo n.º 5
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 CrudeAirportLinkContract();
         _isNew    = true;
         Show();
     } catch (Exception ex) {
         if (ex == null)
         {
         }
         else
         {
             System.Diagnostics.Debugger.Break();
         }
     }
 }
Ejemplo n.º 6
0
        public ActionResult CrudeAirportLinkCreate(System.Guid?airportId, System.Guid?userId)
        {
            var contract = new CrudeAirportLinkContract();

            if (airportId != null)
            {
                contract.AirportId = (System.Guid)airportId;
            }
            if (userId != null)
            {
                contract.UserId = (System.Guid)userId;
            }

            ViewBag.AirportId =
                new SelectList(new CrudeAirportServiceClient().FetchAll(),
                               "AirportId",
                               "AirportName",
                               contract.AirportId
                               );

            ViewBag.LinkTypeRcd =
                new SelectList(new CrudeLinkTypeRefServiceClient().FetchAll(),
                               "LinkTypeRcd",
                               "LinkTypeName",
                               contract.LinkTypeRcd
                               );

            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/CrudeAirportLink/CrudeAirportLinkCreate.cshtml",
                       contract
                       ));
        }
Ejemplo n.º 7
0
        // shows by foreign keys
        // links:
        //  docLink: http://sql2x.org/documentationLink/f21e72c1-2d57-44c1-a9c1-1b80bad6a391
        public void ShowAsAddByAirport(System.Guid airportId)
        {
            try {
                _contract                   = new CrudeAirportLinkContract();
                _isNew                      = true;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();
                _contract.AirportId         = airportId;
                airportPicker.SelectedValue = _contract.AirportId;

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            }
        }
Ejemplo n.º 8
0
        // shows by foreign keys
        // links:
        //  docLink: http://sql2x.org/documentationLink/f21e72c1-2d57-44c1-a9c1-1b80bad6a391
        public void ShowAsAddByLinkType(string linkTypeRcd)
        {
            try {
                _contract                   = new CrudeAirportLinkContract();
                _isNew                      = true;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();
                _contract.LinkTypeRcd       = linkTypeRcd;
                linkTypeRefCombo.Text       = _contract.LinkTypeRcd != null ? _contract.LinkTypeRcd : String.Empty;

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