레포지토리는 저장 공간이다.
이는 값객체와 엔티티와 연관이 없어보일수도 있겠지만,
전혀 연관이 없는것은 아닙니다.
레포지토리는 저장 공간이다.
이는 값객체와 엔티티와 연관이 없어보일수도 있겠지만,
전혀 연관이 없는것은 아닙니다.
namespace _04
{
class UserService
{
private IUserRepository userRepository;
public UserService(IUserRepository userRepository)
{
this.userRepository = userRepository;
}
public bool Exists(User user)
{
var found = userRepository.Find(user.Name);
return found != null;
}
}
}