コード例 #1
0
 public IPhotoHandler Then(IPhotoHandler next)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
 public IPhotoHandler Then(IPhotoHandler next)
 {
     return(new CompositePhotoHandler(this, next));
 }
コード例 #3
0
 public PhotosService(IPhotosRepository repository, IPhotoHandler handler)
 {
     _repository = repository;
     _handler    = handler;
 }