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

            _isNew = false;
            try {
                _contract                   = service.FetchByServiceHotelLinkId(serviceHotelLinkId);
                linkTypeRefCombo.Text       = _contract.LinkTypeRcd != null ? _contract.LinkTypeRcd : String.Empty;
                textBoxLink.Text            = _contract.Link;
                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();
            }
        }
        // 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 serviceHotelId, string linkTypeRcd, string link, System.Guid userId)
        {
            try {
                _contract = new CrudeServiceHotelLinkContract();
                _isNew    = true;
                _contract.ServiceHotelId    = serviceHotelId;
                _contract.LinkTypeRcd       = linkTypeRcd;
                linkTypeRefCombo.Text       = _contract.LinkTypeRcd != null ? _contract.LinkTypeRcd : String.Empty;
                _contract.Link              = link;
                textBoxLink.Text            = _contract.Link;
                _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();
                }
            }
        }
示例#3
0
        public ActionResult CrudeServiceHotelLinkCreate([Bind()] CrudeServiceHotelLinkContract contract)
        {
            if (ModelState.IsValid)
            {
                new CrudeServiceHotelLinkServiceClient().Insert(contract);

                return(RedirectToAction("CrudeServiceHotelLinkIndex"));
            }

            return(View(
                       "~/Views/Crude/Service/CrudeServiceHotelLink/CrudeServiceHotelLinkCreate.cshtml",
                       contract
                       ));
        }
示例#4
0
        public ActionResult CrudeServiceHotelLinkEdit([Bind()] CrudeServiceHotelLinkContract contract)
        {
            if (ModelState.IsValid)
            {
                contract.DateTime = DateTime.UtcNow;

                new CrudeServiceHotelLinkServiceClient().Update(contract);

                return(RedirectToAction("CrudeServiceHotelLinkIndex"));
            }

            return(View(
                       "~/Views/Crude/Service/CrudeServiceHotelLink/CrudeServiceHotelLinkEdit.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 CrudeServiceHotelLinkContract();
         _isNew     = true;
         this.Text += " - Not Savable (ServiceHotel Missing)";
         Show();
     } catch (Exception ex) {
         if (ex == null)
         {
         }
         else
         {
             System.Diagnostics.Debugger.Break();
         }
     }
 }
示例#6
0
        public ActionResult CrudeServiceHotelLinkCreate(System.Guid?serviceHotelId, System.Guid?userId)
        {
            var contract = new CrudeServiceHotelLinkContract();

            if (serviceHotelId != null)
            {
                contract.ServiceHotelId = (System.Guid)serviceHotelId;
            }
            if (userId != null)
            {
                contract.UserId = (System.Guid)userId;
            }

            ViewBag.ServiceHotelId =
                new SelectList(new CrudeServiceHotelServiceClient().FetchAll(),
                               "ServiceHotelId",
                               "HotelName",
                               contract.ServiceHotelId
                               );

            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/Service/CrudeServiceHotelLink/CrudeServiceHotelLinkCreate.cshtml",
                       contract
                       ));
        }
        // shows by foreign keys
        // links:
        //  docLink: http://sql2x.org/documentationLink/f21e72c1-2d57-44c1-a9c1-1b80bad6a391
        public void ShowAsAddByServiceHotel(System.Guid serviceHotelId)
        {
            try {
                _contract                   = new CrudeServiceHotelLinkContract();
                _isNew                      = true;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();
                _contract.ServiceHotelId    = serviceHotelId;

                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 ShowAsAddByLinkTypeAndLink(string linkTypeRcd, string link)
        {
            try {
                _contract                   = new CrudeServiceHotelLinkContract();
                _isNew                      = true;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();
                _contract.LinkTypeRcd       = linkTypeRcd;
                linkTypeRefCombo.Text       = _contract.LinkTypeRcd != null ? _contract.LinkTypeRcd : String.Empty;
                _contract.Link              = link;
                textBoxLink.Text            = _contract.Link;

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