internal FetchXmlQueryExecutor(ICustomFetchXmlQueryExecutor userFetchXmlQueryExecutor)
 {
     UserFetchXmlQueryExecutor = userFetchXmlQueryExecutor;
 }
 public FetchXmlContext(ICustomFetchXmlQueryExecutor userFetchXmlQueryExecutor)
 {
     _fetchXmlQueryExecutor   = new FetchXmlQueryExecutor(userFetchXmlQueryExecutor);
     _modelMetadataRepository = new ModelMetadataRepository();
 }