public ActionResult <IAsyncEnumerable <AddressDTO> > GetByCityState(string city, string state, int addressType)
        {
            IAsyncEnumerable <AddressDTO> list = _addressService.GetByCityStateAsync(city, state, addressType);

            return(Ok(list));
        }