Exemple #1
0
        public async Task <ActionResult> OnGetAsync([FromServices] CustomersQueryComponent customersQueryComponent, Guid id)
        {
            if (customersQueryComponent == null)
            {
                throw new ArgumentNullException(nameof(customersQueryComponent));
            }

            this.Id = id;

            Customer customer = await customersQueryComponent.CustomerAsync(Id);

            if (customer == null)
            {
                return(RedirectToPage("/NotFound"));
            }

            Customer = new AddUpdateCustomerRequest
            {
                Name              = customer.CustomerInfo.Name,
                FamilyName1       = customer.CustomerInfo.FamilyName1,
                FamilyName2       = customer.CustomerInfo.FamilyName2,
                BirthDate         = customer.CustomerInfo.BirthDate,
                Cellphone         = customer.CustomerInfo.Cellphone,
                Email             = customer.CustomerInfo.Email,
                Telephone         = customer.CustomerInfo.Telephone,
                MailEnabled       = customer.CustomerOptions.MailEnabled,
                PhoneCallsEnabled = customer.CustomerOptions.PhoneCallsEnabled
            };

            return(Page());
        }
Exemple #2
0
 public AddOrderModel(
     CustomersQueryComponent customersQueryComponent,
     ProductQueryComponent productQueryComponent,
     IDateComponent dateComponent)
 {
     _customersQueryComponent = customersQueryComponent ?? throw new ArgumentNullException(nameof(customersQueryComponent));
     _productQueryComponent   = productQueryComponent ?? throw new ArgumentNullException(nameof(productQueryComponent));
     _dateComponent           = dateComponent ?? throw new ArgumentNullException(nameof(dateComponent));
 }
Exemple #3
0
        public async Task <IActionResult> OnPostAsync(
            [FromServices] CustomerComponentUowFactory customerComponentUowFactory,
            [FromServices] CustomersQueryComponent customersQueryComponent)
        {
            if (customerComponentUowFactory == null)
            {
                throw new System.ArgumentNullException(nameof(customerComponentUowFactory));
            }

            if (customersQueryComponent == null)
            {
                throw new ArgumentNullException(nameof(customersQueryComponent));
            }

            if (!ModelState.IsValid)
            {
                return(Page());
            }

            Option <ICustomerComponentUow> customerComponentOption = await customerComponentUowFactory.ExistingCustomerUowAsync(Id);

            if (!customerComponentOption.Any())
            {
                return(RedirectToPage("/NotFound"));
            }

            using (ICustomerComponentUow customerComponent = customerComponentOption.Single())
            {
                try
                {
                    WorkflowResult result = await customerComponent.SaveInfoAsync(Customer.Name,
                                                                                  Customer.FamilyName1,
                                                                                  Customer.FamilyName2,
                                                                                  Customer.Telephone,
                                                                                  Customer.Cellphone,
                                                                                  Customer.Email,
                                                                                  Customer.BirthDate,
                                                                                  Customer.PhoneCallsEnabled,
                                                                                  Customer.MailEnabled,
                                                                                  UserId());

                    if (!result.Success)
                    {
                        customerComponent.RollbackChanges();

                        for (int i = 0; i < result.Errors.Length; i++)
                        {
                            ModelState.TryAddModelError("", result.Errors[i]);
                        }

                        return(Page());
                    }

                    return(RedirectToPage("./Details", new { id = customerComponent.CustomerId }));
                }
                catch (System.Exception ex)
                {
                    ModelState.AddModelError("", ex.Message);
                    customerComponent.RollbackChanges();
                }
            }

            return(Page());
        }
 public DetailsModel(CustomersQueryComponent customersQueryComponent)
 {
     _customersQueryComponent = customersQueryComponent;
 }
Exemple #5
0
 public IndexModel(CustomersQueryComponent customersQueryComponent)
 {
     _customersQueryComponent = customersQueryComponent ?? throw new ArgumentNullException(nameof(customersQueryComponent));
 }