public ActionResult <IAsyncEnumerable <AddressDTO> > GetAll()
        {
            IAsyncEnumerable <AddressDTO> list = _addressService.GetAllAsync();

            return(Ok(list));
        }