public TableBuilderMetaController(
     ISubjectMetaService subjectMetaService,
     ICacheKeyService cacheKeyService)
 {
     _subjectMetaService = subjectMetaService;
     _cacheKeyService    = cacheKeyService;
 }
 public TableBuilderMetaController(ISubjectMetaService subjectMetaService)
 {
     _subjectMetaService = subjectMetaService;
 }
 public TableBuilderMetaController(IReleaseMetaService releaseMetaService,
                                   ISubjectMetaService subjectMetaService)
 {
     _releaseMetaService = releaseMetaService;
     _subjectMetaService = subjectMetaService;
 }