Пример #1
0
 public static DataAcquirerInputModel FromValues(
     Guid jobId,
     string query,
     string queryLanguage,
     DataAcquirerAttributes attributes,
     int numberOfPostToRetreive)
 {
     return(new DataAcquirerInputModel(
                jobId,
                query,
                queryLanguage,
                attributes,
                numberOfPostToRetreive));
 }
Пример #2
0
        public DataAcquirerInputModel(
            Guid jobId,
            string query,
            string queryLanguage,
            DataAcquirerAttributes attributes,
            int batchSize
            )
        {
            Attributes = attributes;

            JobId         = jobId;
            Query         = query;
            QueryLanguage = queryLanguage;
            BatchSize     = batchSize;
        }