public DictionariesRenderer(IRenderLink linkRenderer, IRenderDictionary dictionaryRenderer)
     : base(linkRenderer)
 {
     _dictionaryRenderer = dictionaryRenderer;
 }
 public GetDictionaryByIdRequestHandler(IQueryProcessor queryProcessor, IRenderDictionary dictionaryRenderer)
 {
     _queryProcessor     = queryProcessor;
     _dictionaryRenderer = dictionaryRenderer;
 }