Example #1
0
 public PhotoController(IPhotoStorage photoStorage, IGenreStorage genreStorage,
                        IPhotographerStorage photographerStorage)
 {
     _photoStorage        = photoStorage;
     _genreStorage        = genreStorage;
     _photographerStorage = photographerStorage;
 }
 public PhotographerController(IPhotographerStorage storage)
 {
     _storage = storage;
 }
Example #3
0
 public TestController(IPhotographerStorage photographerStorage)
 {
     _photographerStorage = photographerStorage;
 }