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

            _isNew = false;
            try {
                _contract = service.FetchByFlightSegmentEventId(flightSegmentEventId);
                maskedTextBoxFlightSegmentEventNumber.Text = _contract.FlightSegmentEventNumber.ToString();
                dateTimeTypeRefCombo.Text         = _contract.DateTimeTypeRcd != null ? _contract.DateTimeTypeRcd : String.Empty;
                dateTimePickerNewDateTime.Value   = _contract.NewDateTime != DateTime.MinValue ? _contract.NewDateTime : dateTimePickerNewDateTime.MinDate;
                dateTimePickerNewDateTime.Checked = _contract.NewDateTime != DateTime.MinValue;
                textBoxRemarks.Text         = _contract.Remarks;
                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();
            }
        }
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(System.Guid flightSegmentId, int flightSegmentEventNumber, string dateTimeTypeRcd, System.DateTime newDateTime, string remarks, System.Guid userId)
        {
            try {
                _contract = new CrudeFlightSegmentEventContract();
                _isNew    = true;
                _contract.FlightSegmentId                  = flightSegmentId;
                _contract.FlightSegmentEventNumber         = flightSegmentEventNumber;
                maskedTextBoxFlightSegmentEventNumber.Text = _contract.FlightSegmentEventNumber.ToString();
                _contract.DateTimeTypeRcd                  = dateTimeTypeRcd;
                dateTimeTypeRefCombo.Text                  = _contract.DateTimeTypeRcd != null ? _contract.DateTimeTypeRcd : String.Empty;
                _contract.NewDateTime             = newDateTime;
                dateTimePickerNewDateTime.Value   = _contract.NewDateTime != DateTime.MinValue ? _contract.NewDateTime : dateTimePickerNewDateTime.MinDate;
                dateTimePickerNewDateTime.Checked = _contract.NewDateTime != DateTime.MinValue;
                _contract.Remarks           = remarks;
                textBoxRemarks.Text         = _contract.Remarks;
                _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
        public ActionResult CrudeFlightSegmentEventCreate([Bind()] CrudeFlightSegmentEventContract contract)
        {
            if (ModelState.IsValid)
            {
                new CrudeFlightSegmentEventServiceClient().Insert(contract);

                return(RedirectToAction("CrudeFlightSegmentEventIndex"));
            }

            return(View(
                       "~/Views/Crude/Flight/CrudeFlightSegmentEvent/CrudeFlightSegmentEventCreate.cshtml",
                       contract
                       ));
        }
Example #4
0
        public ActionResult CrudeFlightSegmentEventEdit([Bind()] CrudeFlightSegmentEventContract contract)
        {
            if (ModelState.IsValid)
            {
                contract.DateTime = DateTime.UtcNow;

                new CrudeFlightSegmentEventServiceClient().Update(contract);

                return(RedirectToAction("CrudeFlightSegmentEventIndex"));
            }

            return(View(
                       "~/Views/Crude/Flight/CrudeFlightSegmentEvent/CrudeFlightSegmentEventEdit.cshtml",
                       contract
                       ));
        }
Example #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 CrudeFlightSegmentEventContract();
         _isNew     = true;
         this.Text += " - Not Savable (FlightSegment Missing)";
         Show();
     } catch (Exception ex) {
         if (ex == null)
         {
         }
         else
         {
             System.Diagnostics.Debugger.Break();
         }
     }
 }
Example #6
0
        // shows by foreign keys
        // links:
        //  docLink: http://sql2x.org/documentationLink/f21e72c1-2d57-44c1-a9c1-1b80bad6a391
        public void ShowAsAddByFlightSegment(System.Guid flightSegmentId)
        {
            try {
                _contract                   = new CrudeFlightSegmentEventContract();
                _isNew                      = true;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();
                _contract.FlightSegmentId   = flightSegmentId;

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            }
        }
Example #7
0
        public ActionResult CrudeFlightSegmentEventCreate(System.Guid?flightSegmentId, System.Guid?userId)
        {
            var contract = new CrudeFlightSegmentEventContract();

            if (flightSegmentId != null)
            {
                contract.FlightSegmentId = (System.Guid)flightSegmentId;
            }
            if (userId != null)
            {
                contract.UserId = (System.Guid)userId;
            }

            ViewBag.DateTimeTypeRcd =
                new SelectList(new CrudeDateTimeTypeRefServiceClient().FetchAll(),
                               "DateTimeTypeRcd",
                               "DateTimeTypeName",
                               contract.DateTimeTypeRcd
                               );

            contract.NewDateTime = DateTime.UtcNow;

            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/Flight/CrudeFlightSegmentEvent/CrudeFlightSegmentEventCreate.cshtml",
                       contract
                       ));
        }
Example #8
0
        // shows by foreign keys
        // links:
        //  docLink: http://sql2x.org/documentationLink/f21e72c1-2d57-44c1-a9c1-1b80bad6a391
        public void ShowAsAddByDateTimeTypeAndDateTime(string dateTimeTypeRcd)
        {
            try {
                _contract                   = new CrudeFlightSegmentEventContract();
                _isNew                      = true;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();
                _contract.DateTimeTypeRcd   = dateTimeTypeRcd;
                dateTimeTypeRefCombo.Text   = _contract.DateTimeTypeRcd != null ? _contract.DateTimeTypeRcd : String.Empty;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();

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