コード例 #1
0
        internal bool UpdatePersonalInformationWithCustomerId(UpdateCustomerPersonalInformation personalInformation)
        {
            var customer  = Context.Customers.FirstOrDefault(c => c.Id == personalInformation.CustomerId && c.IsActive);
            var address   = Context.Addresses.FirstOrDefault(c => c.Id == customer.IdAddress && c.IsActive);
            var oldPhones = Context.PhoneNumbers.Where(c => c.IdCustomer == customer.Id && c.IsActive);

            if (customer != null && address != null && oldPhones != null)
            {
                foreach (var phone in oldPhones)
                {
                    Context.Remove(phone);
                }
                customer.Occupation     = personalInformation.Occupation;
                address.IdState         = personalInformation.PhysicalAddress.IdState;
                address.PhysicalAddress = personalInformation.PhysicalAddress.PhysicalAddress;
                address.ZipCode         = personalInformation.PhysicalAddress.ZipCode;
                address.CityName        = personalInformation.PhysicalAddress.CityName;
                foreach (var newPhoneNumber in personalInformation.PhoneNumbers)
                {
                    newPhoneNumber.IsActive   = true;
                    newPhoneNumber.IdCustomer = customer.Id;
                    Context.Add(newPhoneNumber);
                }
                Context.SaveChanges();
                return(true);
            }
            return(false);
        }
コード例 #2
0
        public ActionResult UpdatePersonalInformationWithCustomerId([FromBody] UpdateCustomerPersonalInformation personalInformation)
        {
            if (personalInformation != null)
            {
                return(Ok(Service.UpdatePersonalInformationWithCustomerId(personalInformation)));
            }

            return(BadRequest());
        }