示例#1
0
 public ProfileService(IProfilePhotoRepository profilePhotoRepository)
 {
     this.profilePhotoRepository = profilePhotoRepository;
 }
示例#2
0
 public AuthenticationService(IUserRepository userRepository, IProfilePhotoRepository profilePhotoRepository)
 {
     _userRepository         = userRepository;
     _profilePhotoRepository = profilePhotoRepository;
 }