Esempio 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 ferryId)
        {
            var service = new CrudeFerryServiceClient();

            _isNew = false;
            try {
                _contract              = service.FetchByFerryId(ferryId);
                textBoxFerryName.Text  = _contract.FerryName;
                ferryTypeRefCombo.Text = _contract.FerryTypeRcd != null ? _contract.FerryTypeRcd : String.Empty;
                dateTimePickerFirstFloatDateTime.Value    = _contract.FirstFloatDateTime != DateTime.MinValue ? _contract.FirstFloatDateTime : dateTimePickerFirstFloatDateTime.MinDate;
                dateTimePickerFirstFloatDateTime.Checked  = _contract.FirstFloatDateTime != DateTime.MinValue;
                dateTimePickerOperationalDateTime.Value   = _contract.OperationalDateTime != DateTime.MinValue ? _contract.OperationalDateTime : dateTimePickerOperationalDateTime.MinDate;
                dateTimePickerOperationalDateTime.Checked = _contract.OperationalDateTime != DateTime.MinValue;
                textBoxEngineType.Text = _contract.EngineType;
                maskedTextBoxPassengerCapacity.Text = _contract.PassengerCapacity.ToString();
                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();
            }
        }
Esempio n. 2
0
        public ActionResult CrudeFerryCreate([Bind()] CrudeFerryContract contract)
        {
            if (ModelState.IsValid)
            {
                new CrudeFerryServiceClient().Insert(contract);

                return(RedirectToAction("CrudeFerryIndex"));
            }

            return(View(
                       "~/Views/Crude/Ferry/CrudeFerry/CrudeFerryCreate.cshtml",
                       contract
                       ));
        }
Esempio n. 3
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 CrudeFerryContract();
         _isNew    = true;
         Show();
     } catch (Exception ex) {
         if (ex == null)
         {
         }
         else
         {
             System.Diagnostics.Debugger.Break();
         }
     }
 }
Esempio n. 4
0
        public ActionResult CrudeFerryEdit([Bind()] CrudeFerryContract contract)
        {
            if (ModelState.IsValid)
            {
                contract.DateTime = DateTime.UtcNow;

                new CrudeFerryServiceClient().Update(contract);

                return(RedirectToAction("CrudeFerryIndex"));
            }

            return(View(
                       "~/Views/Crude/Ferry/CrudeFerry/CrudeFerryEdit.cshtml",
                       contract
                       ));
        }
Esempio n. 5
0
        public ActionResult CrudeFerryCreate(System.Guid?productId, System.Guid?userId)
        {
            var contract = new CrudeFerryContract();

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

            ViewBag.FerryTypeRcd =
                new SelectList(new CrudeFerryTypeRefServiceClient().FetchAll(),
                               "FerryTypeRcd",
                               "FerryTypeName",
                               contract.FerryTypeRcd
                               );

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

            contract.FirstFloatDateTime = DateTime.UtcNow;

            contract.OperationalDateTime = 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/Ferry/CrudeFerry/CrudeFerryCreate.cshtml",
                       contract
                       ));
        }
Esempio n. 6
0
        // shows by foreign keys
        // links:
        //  docLink: http://sql2x.org/documentationLink/f21e72c1-2d57-44c1-a9c1-1b80bad6a391
        public void ShowAsAddByFerryType(string ferryTypeRcd)
        {
            try {
                _contract                   = new CrudeFerryContract();
                _isNew                      = true;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();
                _contract.FerryTypeRcd      = ferryTypeRcd;
                ferryTypeRefCombo.Text      = _contract.FerryTypeRcd != null ? _contract.FerryTypeRcd : String.Empty;

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            }
        }
Esempio n. 7
0
        // shows the form with default values for comboboxes and pickers
        // links:
        //  docLink: http://sql2x.org/documentationLink/599dcb45-f71b-4672-bb18-46975a4fe9b3
        public void ShowAsAddByRules(System.Guid userId)
        {
            try {
                _contract                   = new CrudeFerryContract();
                _isNew                      = true;
                _contract.UserId            = userId;
                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();
                }
            }
        }
Esempio n. 8
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 ferryName, string ferryTypeRcd, System.Guid productId, System.DateTime firstFloatDateTime, System.DateTime operationalDateTime, string engineType, int passengerCapacity, System.Guid userId)
        {
            try {
                _contract                                 = new CrudeFerryContract();
                _isNew                                    = true;
                _contract.FerryName                       = ferryName;
                textBoxFerryName.Text                     = _contract.FerryName;
                _contract.FerryTypeRcd                    = ferryTypeRcd;
                ferryTypeRefCombo.Text                    = _contract.FerryTypeRcd != null ? _contract.FerryTypeRcd : String.Empty;
                _contract.ProductId                       = productId;
                _contract.FirstFloatDateTime              = firstFloatDateTime;
                dateTimePickerFirstFloatDateTime.Value    = _contract.FirstFloatDateTime != DateTime.MinValue ? _contract.FirstFloatDateTime : dateTimePickerFirstFloatDateTime.MinDate;
                dateTimePickerFirstFloatDateTime.Checked  = _contract.FirstFloatDateTime != DateTime.MinValue;
                _contract.OperationalDateTime             = operationalDateTime;
                dateTimePickerOperationalDateTime.Value   = _contract.OperationalDateTime != DateTime.MinValue ? _contract.OperationalDateTime : dateTimePickerOperationalDateTime.MinDate;
                dateTimePickerOperationalDateTime.Checked = _contract.OperationalDateTime != DateTime.MinValue;
                _contract.EngineType                      = engineType;
                textBoxEngineType.Text                    = _contract.EngineType;
                _contract.PassengerCapacity               = passengerCapacity;
                maskedTextBoxPassengerCapacity.Text       = _contract.PassengerCapacity.ToString();
                _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();
                }
            }
        }