Example #1
0
        public ActionResult <List <DeliveryAddress> > GetDeliveryAddressById(int id)
        {
            var address = _publicCustomerService.GetDeliveryAddressByCustomerId(id);

            return(address == null?NotFound() : address);
        }