public async Task <IDataResult <List <Address> > > GetAllByUserId(int userId) { return(new SuccessDataResult <List <Address> >(await _addressDal.GetAllAsync(p => p.UserId == userId), "Kullanıcının adresi listelendi")); }