public ActionResult <IAsyncEnumerable <AddressDTO> > GetByPostalCode(int postalCode, int addressType)
        {
            IAsyncEnumerable <AddressDTO> list = _addressService.GetByPostalCodeAsync(postalCode, addressType);

            return(Ok(list));
        }