Ejemplo n.º 1
0
 public Handler
 (
     IArticleRepository repository,
     ICategoryRepository categoryRepository,
     IMediaObjectRepository mediaObjectRepository,
     ITagRepository tagRepository
 )
 {
     this.repository            = repository;
     this.categoryRepository    = categoryRepository;
     this.mediaObjectRepository = mediaObjectRepository;
     this.tagRepository         = tagRepository;
 }
 public Handler(IMediaObjectRepository repository)
 {
     this.repository = repository;
 }