public ApiController(
     IAuthorizationService authorizationService,
     LuceneQuerySource luceneQuerySource)
 {
     _authorizationService = authorizationService;
     _luceneQuerySource    = luceneQuerySource;
 }
 public ApiController(
     IAuthorizationService authorizationService,
     LuceneQuerySource luceneQuerySource,
     ISession session)
 {
     _authorizationService = authorizationService;
     _luceneQuerySource    = luceneQuerySource;
     _session = session;
 }