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 servicePackagePromotionId)
        {
            var service = new CrudeServicePackagePromotionServiceClient();

            _isNew = false;
            try {
                _contract = service.FetchByServicePackagePromotionId(servicePackagePromotionId);
                servicePackagePicker.SelectedValue     = _contract.ServicePackageId;
                maskedTextBoxPromotionPriceAmount.Text = _contract.PromotionPriceAmount.ToString();
                financialCurrencyPicker.SelectedValue  = _contract.FinancialCurrencyId;
                userPicker.SelectedValue    = _contract.UserId;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();
                clientPicker.SelectedValue  = _contract.ClientId;

                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 servicePackageId, decimal promotionPriceAmount, System.Guid financialCurrencyId, System.Guid userId, System.Guid bookingId, System.Guid clientId)
        {
            try {
                _contract = new CrudeServicePackagePromotionContract();
                _isNew    = true;
                _contract.ServicePackageId             = servicePackageId;
                servicePackagePicker.SelectedValue     = _contract.ServicePackageId;
                _contract.PromotionPriceAmount         = promotionPriceAmount;
                maskedTextBoxPromotionPriceAmount.Text = _contract.PromotionPriceAmount.ToString();
                _contract.FinancialCurrencyId          = financialCurrencyId;
                financialCurrencyPicker.SelectedValue  = _contract.FinancialCurrencyId;
                _contract.UserId            = userId;
                userPicker.SelectedValue    = userId;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();
                _contract.BookingId         = bookingId;
                _contract.ClientId          = clientId;
                clientPicker.SelectedValue  = _contract.ClientId;

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            }
        }
        public ActionResult CrudeServicePackagePromotionCreate([Bind()] CrudeServicePackagePromotionContract contract)
        {
            if (ModelState.IsValid)
            {
                new CrudeServicePackagePromotionServiceClient().Insert(contract);

                return(RedirectToAction("CrudeServicePackagePromotionIndex"));
            }

            return(View(
                       "~/Views/Crude/Service/CrudeServicePackagePromotion/CrudeServicePackagePromotionCreate.cshtml",
                       contract
                       ));
        }
Ejemplo n.º 4
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 CrudeServicePackagePromotionContract();
         _isNew    = true;
         Show();
     } catch (Exception ex) {
         if (ex == null)
         {
         }
         else
         {
             System.Diagnostics.Debugger.Break();
         }
     }
 }
        public ActionResult CrudeServicePackagePromotionEdit([Bind()] CrudeServicePackagePromotionContract contract)
        {
            if (ModelState.IsValid)
            {
                contract.DateTime = DateTime.UtcNow;

                new CrudeServicePackagePromotionServiceClient().Update(contract);

                return(RedirectToAction("CrudeServicePackagePromotionIndex"));
            }

            return(View(
                       "~/Views/Crude/Service/CrudeServicePackagePromotion/CrudeServicePackagePromotionEdit.cshtml",
                       contract
                       ));
        }
Ejemplo n.º 6
0
        // shows by foreign keys
        // links:
        //  docLink: http://sql2x.org/documentationLink/f21e72c1-2d57-44c1-a9c1-1b80bad6a391
        public void ShowAsAddByBooking(System.Guid bookingId)
        {
            try {
                _contract                   = new CrudeServicePackagePromotionContract();
                _isNew                      = true;
                _contract.DateTime          = DateTime.UtcNow;
                dateTimePickerDateTime.Text = _contract.DateTime.ToString();
                _contract.BookingId         = bookingId;

                Show();
            } catch (Exception ex) {
                if (ex == null)
                {
                }
                else
                {
                    System.Diagnostics.Debugger.Break();
                }
            }
        }
Ejemplo 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 CrudeServicePackagePromotionContract();
                _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();
                }
            }
        }
        public ActionResult CrudeServicePackagePromotionCreate(System.Guid?servicePackageId, System.Guid?financialCurrencyId, System.Guid?userId, System.Guid?bookingId, System.Guid?clientId)
        {
            var contract = new CrudeServicePackagePromotionContract();

            if (servicePackageId != null)
            {
                contract.ServicePackageId = (System.Guid)servicePackageId;
            }
            if (financialCurrencyId != null)
            {
                contract.FinancialCurrencyId = (System.Guid)financialCurrencyId;
            }
            if (userId != null)
            {
                contract.UserId = (System.Guid)userId;
            }
            if (bookingId != null)
            {
                contract.BookingId = (System.Guid)bookingId;
            }
            if (clientId != null)
            {
                contract.ClientId = (System.Guid)clientId;
            }

            ViewBag.ServicePackageId =
                new SelectList(new CrudeServicePackageServiceClient().FetchAll(),
                               "ServicePackageId",
                               "ServicePackageName",
                               contract.ServicePackageId
                               );

            ViewBag.FinancialCurrencyId =
                new SelectList(new CrudeFinancialCurrencyServiceClient().FetchAll(),
                               "FinancialCurrencyId",
                               "FinancialCurrencyTypeName",
                               contract.FinancialCurrencyId
                               );

            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;

            ViewBag.ClientId =
                new SelectList(new CrudeClientServiceClient().FetchAll(),
                               "ClientId",
                               "FirstName",
                               contract.ClientId
                               );


            return(View(
                       "~/Views/Crude/Service/CrudeServicePackagePromotion/CrudeServicePackagePromotionCreate.cshtml",
                       contract
                       ));
        }