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