public IPhotoHandler Then(IPhotoHandler next)
 {
     throw new NotImplementedException();
 }
Esempio n. 2
0
 public IPhotoHandler Then(IPhotoHandler next)
 {
     return(new CompositePhotoHandler(this, next));
 }
Esempio n. 3
0
 public PhotosService(IPhotosRepository repository, IPhotoHandler handler)
 {
     _repository = repository;
     _handler    = handler;
 }