Beispiel #1
0
 public UploadController(IPhotoEntryRepository photoEntryRepository)
 {
     this.PhotoEntryRepository = photoEntryRepository;
 }
Beispiel #2
0
 public BellController(IPhotoEntryRepository photoEntryRepository, IUserRepository userRepository)
 {
     this.PhotoEntryRepository = photoEntryRepository;
     this.UserRepository       = userRepository;
 }